diff --git a/app/api/endpoints.py b/app/api/endpoints.py
index 39a9121..050a3a1 100644
--- a/app/api/endpoints.py
+++ b/app/api/endpoints.py
@@ -163,6 +163,34 @@ async def health_check_compat(request: Request):
return await health_check(request)
+@router.get("/api/v1/realtime_status", include_in_schema=False)
+async def get_realtime_status(request: Request):
+ """실시간 세션/워커 상태 (모니터링 대시보드용)"""
+ try:
+ from app.core.session_pool import session_pool
+ from app.core.worker_manager import worker_manager
+
+ # 실시간 세션 상태 조회
+ session_status = session_pool.get_status()
+
+ # 실시간 워커 상태 조회
+ worker_status = worker_manager.get_status()
+
+ return {
+ "session_status": session_status,
+ "worker_status": worker_status,
+ "timestamp": time.time()
+ }
+ except Exception as e:
+ logger.error(f"실시간 상태 조회 실패: {e}")
+ return {
+ "session_status": {},
+ "worker_status": {},
+ "error": str(e),
+ "timestamp": time.time()
+ }
+
+
@router.get("/api/v1/server-config", response_model=ServerConfigResponse)
async def get_server_config():
"""서버 설정 정보 반환 (iopaint 호환)"""
diff --git a/app/core/config.py b/app/core/config.py
index 1c83ced..81f455a 100644
--- a/app/core/config.py
+++ b/app/core/config.py
@@ -90,14 +90,14 @@ class Settings(BaseSettings):
# 동적 세션 풀/메모리
# =========================
SIMPLE_LAMA_MIN_SESSIONS: int = 4
- SIMPLE_LAMA_MAX_SESSIONS: int = 8
+ SIMPLE_LAMA_MAX_SESSIONS: int = 6
# x86에서는 MIGAN 미로딩(지연 로딩) 기본 → MIN=0
- MIGAN_MIN_SESSIONS: int = 4 if IS_JETSON else 1
- MIGAN_MAX_SESSIONS: int = 8
+ MIGAN_MIN_SESSIONS: int = 2 if IS_JETSON else 1
+ MIGAN_MAX_SESSIONS: int = 6
- REMBG_MIN_SESSIONS: int = 3 if IS_JETSON else 1
- REMBG_MAX_SESSIONS: int = 6 if IS_JETSON else 4
+ REMBG_MIN_SESSIONS: int = 2
+ REMBG_MAX_SESSIONS: int = 6
# 여유 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 = 8
- MICRO_BATCH_TIMEOUT_MS: int = 80
+ MICRO_BATCH_SIZE: int = 4
+ MICRO_BATCH_TIMEOUT_MS: int = 100
# 사전 확정 세션(플랫폼 감안 기본치)
SIMPLE_LAMA_SESSIONS: int = 4
@@ -115,7 +115,7 @@ class Settings(BaseSettings):
# 워커(내부 큐/스레드 워커, 프로세스는 WORKERS)
MAX_WORKERS: int = 6 if IS_JETSON else 12
- MIN_WORKERS: int = 3 if IS_JETSON else 4
+ MIN_WORKERS: int = 2 if IS_JETSON else 6
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 = 10 if IS_JETSON else 5 # 초
+ VRAM_CHECK_INTERVAL: int = 20 if IS_JETSON else 15 # 초
# =========================
# 모델/경로
diff --git a/app/core/session_pool.py b/app/core/session_pool.py
index 78df78c..7e3ad85 100644
--- a/app/core/session_pool.py
+++ b/app/core/session_pool.py
@@ -14,7 +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
+from ..utils.session_event_log import log_session_event
logger = logging.getLogger(__name__)
@@ -119,16 +119,7 @@ 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
+ log_session_event("session_create", model_type=model_type.value, session_id=session_id)
return session
except Exception as e:
logger.error(f"Failed to create session {session_id}: {e}", exc_info=True)
@@ -262,17 +253,9 @@ class SessionPool:
for session in sessions_to_reap:
pool.remove(session)
reaped_counts[session.model_type.value] += 1
+ log_session_event("session_destroy", model_type=session.model_type.value, session_id=session.session_id, details={"reason": "idle_timeout"})
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 c853021..092ccd7 100644
--- a/app/core/worker_manager.py
+++ b/app/core/worker_manager.py
@@ -16,7 +16,6 @@ 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__)
@@ -231,32 +230,12 @@ 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 d8a42a8..dfe7902 100644
--- a/app/monitoring/dashboard.py
+++ b/app/monitoring/dashboard.py
@@ -25,6 +25,8 @@ from ..core.worker_manager import worker_manager
from ..core.session_pool import session_pool
from ..utils.gpu_monitor import gpu_monitor
from ..core.config import settings
+from ..utils.session_event_log import get_recent_events, read_events_from_file
+from ..utils.daily_stats import daily_stats
# main_app = None
@@ -112,22 +114,32 @@ class MonitoringData:
logger.info("워커 상태가 비어있어 기본값 사용")
worker_status = self._get_default_worker_status()
- # 메인 서버와 프로세스가 분리되어 있으므로, status.json 값을 우선 사용
- # 단, 같은 프로세스에서 실행되어 session_pool 이 초기화되어 있다면 실시간 값을 사용
+ # 실시간 세션/워커 상태를 메인 서버 API에서 직접 가져오기
try:
- if getattr(session_pool, "_initialized", False):
- real_session_status = session_pool.get_status()
- if real_session_status:
- session_status = real_session_status
- logger.debug(f"실시간 세션 풀 상태 사용: {real_session_status}")
-
- if not session_status:
- logger.info("세션 상태가 비어 status.json 값 또는 기본값 사용")
- session_status = status.get("session_status", {}) or self._get_default_session_status()
- except Exception as e:
- logger.warning(f"세션 풀 상태 조회 실패: {e}")
+ logger.info("실시간 세션/워커 상태 조회 시작")
+ response = requests.get(f"http://{settings.HOST}:{settings.PORT}/api/v1/realtime_status", timeout=2)
+ if response.status_code == 200:
+ realtime_data = response.json()
+ if realtime_data.get("session_status"):
+ session_status = realtime_data["session_status"]
+ logger.info(f"✅ 실시간 세션 상태 조회 성공: {session_status}")
+ if realtime_data.get("worker_status"):
+ worker_status = realtime_data["worker_status"]
+ logger.info(f"✅ 실시간 워커 상태 조회 성공")
+ else:
+ logger.warning(f"실시간 상태 조회 실패: 상태 코드 {response.status_code}")
+ except requests.RequestException as e:
+ logger.warning(f"실시간 상태 조회 중 예외 발생: {e}")
+
+ # 실시간 조회 실패 시 status.json 폴백
+ if not session_status:
+ logger.info("실시간 조회 실패, status.json 값 사용")
session_status = status.get("session_status", {}) or self._get_default_session_status()
+ if not worker_status:
+ logger.info("실시간 워커 조회 실패, status.json 값 사용")
+ worker_status = status.get("worker_status", {}) or self._get_default_worker_status()
+
# GPU 정보 (안전하게 가져오기)
gpu_info = {}
try:
@@ -237,19 +249,27 @@ class MonitoringData:
alerts = []
logger.info("데이터 구조 생성 시작")
+
+ # 세션/워커 이벤트 가져오기 (실시간 반영용)
+ session_events = []
+ try:
+ session_events = get_recent_events(limit=100)
+ except Exception as e:
+ logger.warning(f"세션 이벤트 조회 실패: {e}")
+
data = {
"timestamp": datetime.now().isoformat(),
"system_type": "Jetson Xavier" if settings.IS_JETSON else "x86_64",
"gpu": gpu_info,
"system_memory": system_memory,
"system_performance": system_performance,
- # status.json 스냅샷 외에 실시간 상태를 병합
- "workers": worker_manager.get_status() or worker_status,
- "sessions": session_pool.get_status() or session_status,
+ "workers": worker_status,
+ "sessions": session_status,
"jetson": jetson_info,
"api_stats": api_stats,
"model_performance_stats": model_performance_stats,
- "alerts": alerts
+ "alerts": alerts,
+ "session_events": session_events
}
logger.info("히스토리에 데이터 추가 시작")
@@ -721,6 +741,31 @@ HTML_TEMPLATE = """
50% { opacity: 0.5; }
100% { opacity: 1; }
}
+
+ .stat-item {
+ padding: 15px;
+ background: #f8f9fa;
+ border-radius: 8px;
+ text-align: center;
+ }
+
+ .stat-label {
+ font-size: 0.9em;
+ color: #666;
+ margin-bottom: 8px;
+ }
+
+ .stat-value {
+ font-size: 1.8em;
+ font-weight: bold;
+ color: #667eea;
+ margin-bottom: 5px;
+ }
+
+ .stat-details {
+ font-size: 0.85em;
+ color: #999;
+ }
@@ -985,17 +1030,6 @@ HTML_TEMPLATE = """
-
-
마지막 업데이트:
- |
연결 상태:
연결 중...
@@ -1129,8 +1208,7 @@ HTML_TEMPLATE = """
function connectWebSocket() {
try {
- const proto = (window.location.protocol === 'https:') ? 'wss' : 'ws';
- ws = new WebSocket(`${proto}://${window.location.host}/ws`);
+ ws = new WebSocket(`ws://${window.location.host}/ws`);
ws.onopen = function() {
console.log('WebSocket 연결이 성공했습니다.');
@@ -1150,6 +1228,11 @@ HTML_TEMPLATE = """
}
updateDashboard(data);
+
+ // 세션 이벤트가 있으면 타임라인 업데이트
+ if (data.session_events) {
+ renderTimeline(data.session_events);
+ }
} catch (e) {
console.error('데이터 파싱 오류:', e);
}
@@ -1446,6 +1529,71 @@ HTML_TEMPLATE = """
});
}
+ function refreshTimeline() {
+ fetch('/api/session_events?limit=100')
+ .then(r => r.json())
+ .then(data => renderTimeline(data.events || []))
+ .catch(() => {
+ document.getElementById('timeline-body').innerHTML = '
타임라인 로드 실패
';
+ });
+ }
+
+ function renderTimeline(events) {
+ const container = document.getElementById('timeline-body');
+ if (!events || events.length === 0) {
+ container.innerHTML = '
이벤트 없음
';
+ return;
+ }
+
+ // 최신 이벤트가 위로 오도록 역순 정렬
+ const sortedEvents = events.slice().sort((a, b) => b.timestamp - a.timestamp);
+
+ let html = '
';
+ sortedEvents.forEach(event => {
+ const timestamp = new Date(event.timestamp * 1000).toLocaleString('ko-KR', {
+ year: '2-digit',
+ month: '2-digit',
+ day: '2-digit',
+ hour: '2-digit',
+ minute: '2-digit',
+ second: '2-digit'
+ });
+
+ let icon = '🔹';
+ let color = '#6c757d';
+ if (event.event_type === 'session_create') {
+ icon = '✅';
+ color = '#28a745';
+ } else if (event.event_type === 'session_destroy') {
+ icon = '❌';
+ color = '#dc3545';
+ } else if (event.event_type.includes('scale_up')) {
+ icon = '⬆️';
+ color = '#007bff';
+ } else if (event.event_type.includes('scale_down')) {
+ icon = '⬇️';
+ color = '#ffc107';
+ }
+
+ html += '
';
+ html += '' + icon + '';
+ html += '' + timestamp + '';
+ html += '' + event.event_type + '';
+ if (event.model_type) {
+ html += '[' + event.model_type + ']';
+ }
+ if (event.session_id) {
+ html += '' + event.session_id + '';
+ }
+ if (event.details && Object.keys(event.details).length > 0) {
+ html += '' + JSON.stringify(event.details) + '';
+ }
+ html += '
';
+ });
+ html += '
';
+ container.innerHTML = html;
+ }
+
function updateAlerts(alerts) {
const container = document.getElementById('alerts-container');
container.innerHTML = '';
@@ -1719,32 +1867,6 @@ 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() {
// 로그 및 성능 통계 초기 로딩
@@ -1753,6 +1875,7 @@ HTML_TEMPLATE = """
refreshModelUsageStats();
refreshSystemAlerts();
refreshErrors();
+ refreshTimeline();
// 30초마다 로그 및 성능 통계 자동 새로고침
setInterval(refreshLogs, 30000);
@@ -1760,6 +1883,7 @@ HTML_TEMPLATE = """
setInterval(refreshModelUsageStats, 15000); // 15초마다
setInterval(refreshSystemAlerts, 10000); // 10초마다
setInterval(refreshErrors, 10000); // 10초마다
+ setInterval(refreshTimeline, 15000); // 15초마다 타임라인 새로고침
});
@@ -2054,16 +2178,6 @@ 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 기반)."""
@@ -2073,6 +2187,16 @@ def get_recent_errors(limit: int = 50):
logger.error(f"에러 목록 조회 실패: {e}")
return {"errors": [], "error": str(e)}
+@api_router.get("/session_events", summary="최근 세션/워커 이벤트")
+def get_session_events(limit: int = 100):
+ """최근 세션/워커 생성·해제·스케일 이벤트를 반환합니다."""
+ try:
+ events = get_recent_events(limit=limit)
+ return {"events": events}
+ except Exception as e:
+ logger.error(f"세션 이벤트 조회 실패: {e}")
+ return {"events": [], "error": str(e)}
+
@api_router.get("/test")
async def test_endpoint():
"""테스트용 엔드포인트입니다."""
@@ -2347,29 +2471,3 @@ 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/daily_stats.py b/app/utils/daily_stats.py
new file mode 100644
index 0000000..64e9a85
--- /dev/null
+++ b/app/utils/daily_stats.py
@@ -0,0 +1,203 @@
+"""
+일일 통계 수집 및 관리
+- 처리된 이미지 수
+- 네트워크 전송량
+- API 호출 통계
+"""
+from __future__ import annotations
+
+import os
+import time
+import json
+from datetime import datetime, timedelta
+from typing import Dict, Any
+from threading import Lock
+from collections import defaultdict
+
+LOG_DIR = "logs"
+os.makedirs(LOG_DIR, exist_ok=True)
+
+DAILY_STATS_PATH = os.path.join(LOG_DIR, "daily_stats.json")
+
+class DailyStatsCollector:
+ def __init__(self):
+ self.lock = Lock()
+ self.current_date = datetime.now().strftime("%Y-%m-%d")
+ self.stats = self._load_or_create_today_stats()
+
+ def _load_or_create_today_stats(self) -> Dict[str, Any]:
+ """오늘의 통계를 로드하거나 새로 생성"""
+ today = datetime.now().strftime("%Y-%m-%d")
+
+ try:
+ if os.path.exists(DAILY_STATS_PATH):
+ with open(DAILY_STATS_PATH, "r", encoding="utf-8") as f:
+ all_stats = json.load(f)
+
+ # 오늘 날짜의 통계가 있으면 반환
+ if today in all_stats:
+ return all_stats[today]
+ except Exception:
+ pass
+
+ # 새로운 통계 생성
+ return {
+ "date": today,
+ "images_processed": {
+ "inpaint": 0,
+ "remove_bg": 0,
+ "gen_image": 0,
+ "total": 0
+ },
+ "network": {
+ "bytes_uploaded": 0,
+ "bytes_downloaded": 0,
+ "requests_count": 0
+ },
+ "api_calls": {
+ "total": 0,
+ "success": 0,
+ "failed": 0
+ },
+ "models_used": defaultdict(int),
+ "peak_concurrent": 0,
+ "start_time": time.time(),
+ "last_update": time.time()
+ }
+
+ def _check_date_rollover(self):
+ """날짜가 바뀌면 통계 저장 및 리셋"""
+ today = datetime.now().strftime("%Y-%m-%d")
+ if today != self.current_date:
+ # 어제 통계 저장
+ self._save_stats()
+
+ # 새로운 날짜로 리셋
+ self.current_date = today
+ self.stats = self._load_or_create_today_stats()
+
+ def record_image_processed(self, endpoint_type: str):
+ """이미지 처리 기록"""
+ with self.lock:
+ self._check_date_rollover()
+
+ if endpoint_type == "inpaint":
+ self.stats["images_processed"]["inpaint"] += 1
+ elif endpoint_type == "remove_bg":
+ self.stats["images_processed"]["remove_bg"] += 1
+ elif endpoint_type == "gen_image":
+ self.stats["images_processed"]["gen_image"] += 1
+
+ self.stats["images_processed"]["total"] += 1
+ self.stats["last_update"] = time.time()
+
+ def record_network_traffic(self, bytes_uploaded: int, bytes_downloaded: int):
+ """네트워크 트래픽 기록"""
+ with self.lock:
+ self._check_date_rollover()
+
+ self.stats["network"]["bytes_uploaded"] += bytes_uploaded
+ self.stats["network"]["bytes_downloaded"] += bytes_downloaded
+ self.stats["network"]["requests_count"] += 1
+ self.stats["last_update"] = time.time()
+
+ def record_api_call(self, success: bool):
+ """API 호출 기록"""
+ with self.lock:
+ self._check_date_rollover()
+
+ self.stats["api_calls"]["total"] += 1
+ if success:
+ self.stats["api_calls"]["success"] += 1
+ else:
+ self.stats["api_calls"]["failed"] += 1
+ self.stats["last_update"] = time.time()
+
+ def record_model_usage(self, model_name: str):
+ """모델 사용 기록"""
+ with self.lock:
+ self._check_date_rollover()
+
+ if "models_used" not in self.stats:
+ self.stats["models_used"] = {}
+ self.stats["models_used"][model_name] = self.stats["models_used"].get(model_name, 0) + 1
+ self.stats["last_update"] = time.time()
+
+ def update_peak_concurrent(self, current_concurrent: int):
+ """최대 동시 요청 수 업데이트"""
+ with self.lock:
+ self._check_date_rollover()
+
+ if current_concurrent > self.stats["peak_concurrent"]:
+ self.stats["peak_concurrent"] = current_concurrent
+ self.stats["last_update"] = time.time()
+
+ def get_today_stats(self) -> Dict[str, Any]:
+ """오늘의 통계 반환"""
+ with self.lock:
+ self._check_date_rollover()
+
+ # 읽기 전용 복사본 반환
+ stats_copy = dict(self.stats)
+
+ # MB/GB 단위로 변환된 값 추가
+ stats_copy["network"]["mb_uploaded"] = stats_copy["network"]["bytes_uploaded"] / (1024 * 1024)
+ stats_copy["network"]["mb_downloaded"] = stats_copy["network"]["bytes_downloaded"] / (1024 * 1024)
+ stats_copy["network"]["gb_uploaded"] = stats_copy["network"]["bytes_uploaded"] / (1024 * 1024 * 1024)
+ stats_copy["network"]["gb_downloaded"] = stats_copy["network"]["bytes_downloaded"] / (1024 * 1024 * 1024)
+
+ return stats_copy
+
+ def get_historical_stats(self, days: int = 7) -> Dict[str, Any]:
+ """최근 N일간의 통계 반환"""
+ try:
+ if not os.path.exists(DAILY_STATS_PATH):
+ return {}
+
+ with open(DAILY_STATS_PATH, "r", encoding="utf-8") as f:
+ all_stats = json.load(f)
+
+ # 최근 N일 필터링
+ cutoff_date = (datetime.now() - timedelta(days=days)).strftime("%Y-%m-%d")
+ recent_stats = {
+ date: stats for date, stats in all_stats.items()
+ if date >= cutoff_date
+ }
+
+ return recent_stats
+ except Exception:
+ return {}
+
+ def _save_stats(self):
+ """현재 통계를 파일에 저장"""
+ try:
+ # 기존 통계 로드
+ all_stats = {}
+ if os.path.exists(DAILY_STATS_PATH):
+ with open(DAILY_STATS_PATH, "r", encoding="utf-8") as f:
+ all_stats = json.load(f)
+
+ # 현재 날짜 통계 업데이트
+ all_stats[self.current_date] = self.stats
+
+ # 30일 이상 된 통계 삭제
+ cutoff_date = (datetime.now() - timedelta(days=30)).strftime("%Y-%m-%d")
+ all_stats = {
+ date: stats for date, stats in all_stats.items()
+ if date >= cutoff_date
+ }
+
+ # 파일에 저장
+ with open(DAILY_STATS_PATH, "w", encoding="utf-8") as f:
+ json.dump(all_stats, f, indent=2, ensure_ascii=False)
+ except Exception:
+ pass
+
+ def save(self):
+ """수동 저장"""
+ with self.lock:
+ self._save_stats()
+
+# 글로벌 인스턴스
+daily_stats = DailyStatsCollector()
+
diff --git a/app/utils/monitor_events.py b/app/utils/monitor_events.py
deleted file mode 100644
index dac5c24..0000000
--- a/app/utils/monitor_events.py
+++ /dev/null
@@ -1,69 +0,0 @@
-"""
-경량 모니터링 이벤트(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/app/utils/session_event_log.py b/app/utils/session_event_log.py
new file mode 100644
index 0000000..5eb9dd5
--- /dev/null
+++ b/app/utils/session_event_log.py
@@ -0,0 +1,101 @@
+"""
+세션/워커 생성·해제·스케일 이벤트를 기록하고 대시보드로 전달
+"""
+from __future__ import annotations
+
+import os
+import time
+import json
+from collections import deque
+from typing import Dict, Any, List
+from threading import Lock
+
+LOG_DIR = "logs"
+os.makedirs(LOG_DIR, exist_ok=True)
+
+SESSION_EVENT_LOG_PATH = os.path.join(LOG_DIR, "session_events.jsonl")
+SESSION_EVENT_MAX_BYTES = 5 * 1024 * 1024 # 5MB
+SESSION_EVENT_BACKUP_COUNT = 3
+
+# 메모리 내 최근 이벤트 버퍼 (대시보드 실시간 전송용)
+_recent_events: deque = deque(maxlen=200)
+_events_lock = Lock()
+
+
+def _rotate_if_needed() -> None:
+ try:
+ if os.path.exists(SESSION_EVENT_LOG_PATH) and os.path.getsize(SESSION_EVENT_LOG_PATH) >= SESSION_EVENT_MAX_BYTES:
+ ts = time.strftime("%Y%m%d-%H%M%S")
+ rotated_path = os.path.join(LOG_DIR, f"session_events_{ts}.jsonl")
+ os.replace(SESSION_EVENT_LOG_PATH, rotated_path)
+
+ rotated = [
+ os.path.join(LOG_DIR, f) for f in os.listdir(LOG_DIR)
+ if f.startswith("session_events_") and f.endswith(".jsonl")
+ ]
+ rotated.sort(key=lambda p: os.path.getmtime(p), reverse=True)
+ for old in rotated[SESSION_EVENT_BACKUP_COUNT:]:
+ try:
+ os.remove(old)
+ except Exception:
+ pass
+ except Exception:
+ pass
+
+
+def log_session_event(
+ event_type: str, # "session_create", "session_destroy", "worker_scale_up", "worker_scale_down", "pool_reap", etc.
+ model_type: str = "",
+ session_id: str = "",
+ details: Dict[str, Any] | None = None
+) -> None:
+ """
+ 세션/워커 이벤트 기록
+ - JSONL 파일로 영구 저장 (로테이션)
+ - 메모리 버퍼에 최근 이벤트 유지 (대시보드 실시간 전송)
+ """
+ record = {
+ "timestamp": time.time(),
+ "event_type": event_type,
+ "model_type": model_type,
+ "session_id": session_id,
+ "details": details or {}
+ }
+
+ try:
+ _rotate_if_needed()
+ with open(SESSION_EVENT_LOG_PATH, "a", encoding="utf-8") as f:
+ f.write(json.dumps(record, ensure_ascii=False) + "\n")
+ except Exception:
+ pass
+
+ with _events_lock:
+ _recent_events.append(record)
+
+
+def get_recent_events(limit: int = 100) -> List[Dict[str, Any]]:
+ """최근 이벤트 반환 (대시보드 API용)"""
+ with _events_lock:
+ return list(_recent_events)[-limit:]
+
+
+def read_events_from_file(limit: int = 200) -> List[Dict[str, Any]]:
+ """파일에서 최근 이벤트 읽기 (초기 로드용)"""
+ events = []
+ try:
+ if not os.path.exists(SESSION_EVENT_LOG_PATH):
+ return events
+
+ with open(SESSION_EVENT_LOG_PATH, "r", encoding="utf-8") as f:
+ lines = f.readlines()
+
+ for line in lines[-limit:]:
+ try:
+ events.append(json.loads(line.strip()))
+ except Exception:
+ pass
+ except Exception:
+ pass
+
+ return events
+
diff --git a/logs/main.log b/logs/main.log
index 44a4a9d..d0f30f5 100644
--- a/logs/main.log
+++ b/logs/main.log
@@ -204764,3 +204764,30981 @@
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.
+2025-10-02 03:25:41,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:25:41,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:25:41,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:25:41,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 03:25:41,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 03:25:41,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:25:41,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:25:41,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:25:41,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:25:41,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:25:41,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:25:41,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:25:46,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:25:46,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:25:46,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:25:46,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:25:46,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:25:46,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:25:48,743 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:25:48,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:25:48,851 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.482
+2025-10-02 03:25:48,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 03:25:48,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 03:25:51,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:25:51,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:25:51,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:25:51,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:25:51,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:25:51,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:25:52,510 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:25:52,535 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:25:52,618 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.157
+2025-10-02 03:25:52,618 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 03:25:52,618 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 03:25:52,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:25:52,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:25:52,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:25:53,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:25:53,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:25:53,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:25:53,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:25:53,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:25:53,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:25:53,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 03:25:53,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 03:25:53,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:25:58,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:25:58,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:25:58,273 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.675
+2025-10-02 03:25:58,273 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 03:25:58,273 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 03:25:58,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:25:58,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:25:58,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:25:58,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s
+2025-10-02 03:25:58,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image)
+2025-10-02 03:25:58,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:25:58,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:25:58,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:25:58,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:25:58,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:25:58,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:25:58,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:03,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:03,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:03,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:03,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:26:03,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:26:03,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:05,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:05,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:05,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:05,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:26:05,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:26:05,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:06,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:06,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:06,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:06,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:26:06,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:26:06,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:09,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:09,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:09,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:09,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:26:09,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:26:09,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:15,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:15,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:15,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:15,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:26:15,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:26:15,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:15,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:15,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:15,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:16,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:26:16,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:26:16,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:21,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:21,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:21,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:22,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:26:22,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:26:22,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:27,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:27,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:27,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:27,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:26:27,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:26:27,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:28,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:28,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:28,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:29,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:26:29,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:26:29,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:29,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:29,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:29,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:29,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:26:29,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:26:29,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:31,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:31,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:31,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:31,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 03:26:31,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 03:26:31,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:34,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:34,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:34,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:34,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:26:34,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:26:34,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:36,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:36,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:36,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:36,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:26:36,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:26:36,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:37,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:37,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:37,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:37,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:26:37,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:26:37,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:46,241 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:26:46,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:26:46,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:26:46,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s
+2025-10-02 03:26:46,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image)
+2025-10-02 03:26:46,546 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:26:48,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:48,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:48,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:48,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:26:48,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:26:48,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:50,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:50,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:50,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:50,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:26:50,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:26:50,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:51,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:51,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:51,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:51,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:26:51,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:26:51,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:52,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:52,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:52,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:52,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:26:52,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:26:52,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:52,560 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:26:52,581 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:26:52,664 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.161
+2025-10-02 03:26:52,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 03:26:52,664 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 03:26:53,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:53,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:53,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:53,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:26:53,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:26:53,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:55,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:26:55,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:26:55,590 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.333
+2025-10-02 03:26:55,590 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 03:26:55,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 03:26:59,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:59,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:59,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:59,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 03:26:59,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 03:26:59,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:26:59,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:26:59,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:26:59,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:26:59,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:26:59,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:26:59,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:01,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:01,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:01,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:01,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:27:01,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:27:01,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:05,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:05,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:05,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:05,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:27:05,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:27:05,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:10,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:10,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:10,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:10,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:27:10,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:27:10,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:17,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:17,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:17,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:17,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:27:17,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:27:17,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:23,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:23,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:23,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:23,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:27:23,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:27:23,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:25,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:25,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:25,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:25,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:27:25,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:27:25,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:30,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:30,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:30,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:30,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:27:30,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:27:30,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:30,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:27:30,664 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:27:30,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.663
+2025-10-02 03:27:30,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 03:27:30,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 03:27:32,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:32,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:32,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:32,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:27:32,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:27:32,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:32,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:32,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:32,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:32,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:27:32,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:27:32,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:35,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:35,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:35,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:35,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:27:35,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:27:35,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:39,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:27:39,623 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:27:39,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.662
+2025-10-02 03:27:39,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 03:27:39,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 03:27:40,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:40,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:40,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:40,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:27:40,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:27:40,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:41,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:41,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:41,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:41,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:27:41,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:27:41,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:46,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:46,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:46,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:46,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:27:46,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:27:46,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:47,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:47,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:47,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:47,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:27:47,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:27:47,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:51,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:51,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:51,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:51,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:27:51,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:27:51,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:54,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:54,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:54,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:54,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:27:54,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:27:54,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:55,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:55,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:55,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:55,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:27:55,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:27:55,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:27:57,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:27:57,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:27:57,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:27:57,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:27:57,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:27:57,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:02,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:02,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:02,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:02,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:28:02,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:28:02,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:04,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:04,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:04,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:04,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:28:04,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:28:04,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:08,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:08,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:08,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:08,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:28:08,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:28:08,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:09,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:09,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:09,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:09,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 03:28:09,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 03:28:09,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:09,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:09,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:09,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:09,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:28:09,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:28:09,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:11,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:11,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:11,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:11,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:28:11,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:28:11,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:15,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:15,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:15,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:15,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:28:15,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:28:15,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:16,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:16,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:16,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:16,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:28:16,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:28:16,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:16,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:16,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:16,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:16,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:28:16,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:28:16,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:19,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:19,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:19,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:20,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:28:20,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:28:20,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:20,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:20,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:20,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:21,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:28:21,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:28:21,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:21,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:21,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:21,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:21,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:28:21,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:28:21,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:25,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:25,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:25,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:25,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:28:25,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:28:25,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:25,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:25,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:25,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:25,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:28:25,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:28:25,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:26,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:26,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:26,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:26,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 03:28:26,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 03:28:26,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:26,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:26,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:26,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:26,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 03:28:26,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 03:28:26,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:28,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:28,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:28,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:29,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:28:29,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:28:29,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:30,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:30,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:30,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:30,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:28:30,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:28:30,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:30,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:30,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:30,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:30,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:28:30,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:28:30,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:35,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:35,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:35,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:35,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:28:35,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:28:35,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:36,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:36,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:36,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:36,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:28:36,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:28:36,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:36,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:36,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:36,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:36,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:28:36,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:28:36,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:38,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:38,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:38,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:38,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:28:38,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:28:38,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:42,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:42,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:42,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:43,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:28:43,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:28:43,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:44,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:44,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:44,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:44,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:28:44,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:28:44,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:49,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:49,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:49,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:49,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:28:49,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:28:49,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:28:53,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:28:53,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:28:54,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:28:54,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:28:54,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:28:54,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:02,655 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:29:02,675 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:29:02,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.272
+2025-10-02 03:29:02,752 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 03:29:02,752 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 03:29:06,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:06,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:06,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:06,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:29:06,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:29:06,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:06,579 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:29:06,607 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 959, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:29:06,692 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.446
+2025-10-02 03:29:06,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 03:29:06,694 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 03:29:10,400 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:29:10,427 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:29:10,516 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.607
+2025-10-02 03:29:10,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 03:29:10,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 03:29:12,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:12,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:12,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:12,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:29:12,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:29:12,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:17,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:17,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:17,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:17,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:29:17,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:29:17,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:18,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:18,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:18,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:18,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:29:18,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:29:18,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:25,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:25,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:25,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:25,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:29:25,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:29:25,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:25,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:25,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:25,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:25,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:29:25,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:29:25,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:26,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:26,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:26,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:26,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:29:26,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:29:26,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:27,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:27,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:27,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:27,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:29:27,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:29:27,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:30,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:30,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:30,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:30,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:29:30,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:29:30,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:31,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:31,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:31,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:31,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:29:31,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:29:31,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:35,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:35,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:35,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:35,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:29:35,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:29:35,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:36,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:36,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:36,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:36,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:29:36,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:29:36,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:36,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:36,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:36,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:36,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:29:36,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:29:36,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:41,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:41,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:41,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:42,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:29:42,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:29:42,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:42,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:42,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:42,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:42,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:29:42,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:29:42,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:45,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:45,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:45,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:45,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:29:45,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:29:45,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:50,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:50,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:50,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:50,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:29:50,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:29:50,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:51,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:51,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:51,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:51,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 03:29:51,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 03:29:51,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:52,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:52,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:52,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:52,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:29:52,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:29:52,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:54,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:54,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:54,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:55,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:29:55,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:29:55,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:55,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:55,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:55,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:55,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:29:55,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:29:55,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:56,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:56,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:56,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:56,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 03:29:56,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 03:29:56,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:29:56,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:29:56,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:29:56,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:29:56,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:29:56,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:29:56,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:00,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:00,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:00,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:00,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:30:00,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:30:00,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:01,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:01,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:01,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:01,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:30:01,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:30:01,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:03,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:03,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:03,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:03,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:30:03,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:30:03,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:04,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:04,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:04,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:04,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:30:04,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:30:04,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:06,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:06,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:06,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:06,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:30:06,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:30:06,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:07,079 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:30:07,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:30:07,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:30:07,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s
+2025-10-02 03:30:07,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image)
+2025-10-02 03:30:07,352 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:30:10,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:10,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:10,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:10,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:30:10,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:30:10,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:11,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:11,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:11,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:11,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:30:11,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:30:11,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:11,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:11,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:11,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:11,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:30:11,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:30:11,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:14,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:14,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:14,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:14,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:30:14,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:30:14,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:15,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:15,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:15,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:16,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:30:16,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:30:16,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:17,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:17,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:17,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:17,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:30:17,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:30:17,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:24,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:24,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:24,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:25,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:30:25,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:30:25,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:25,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:25,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:25,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:25,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:30:25,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:30:25,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:30,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:30,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:30,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:30,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:30:30,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:30:30,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:32,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:32,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:32,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:32,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:30:32,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:30:32,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:33,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:33,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:33,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:33,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:30:33,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:30:33,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:37,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:37,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:37,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:37,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:30:37,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:30:37,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:39,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:39,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:39,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:39,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:30:39,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:30:39,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:42,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:42,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:42,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:42,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:30:42,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:30:42,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:43,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:43,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:43,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:43,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:30:43,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:30:43,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:44,845 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:30:44,875 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:30:44,960 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.889
+2025-10-02 03:30:44,960 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 03:30:44,961 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 03:30:46,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:46,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:46,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:46,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:30:46,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:30:46,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:52,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:52,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:52,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:52,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:30:52,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:30:52,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:56,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:56,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:56,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:56,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:30:56,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:30:56,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:57,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:57,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:57,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:57,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:30:57,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:30:57,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:30:58,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:30:58,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:30:58,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:30:58,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:30:58,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:30:58,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:02,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:02,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:02,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:03,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:31:03,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:31:03,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:09,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:09,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:09,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:09,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:31:09,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:31:09,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:10,585 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:10,586 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:10,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:10,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:31:10,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:31:10,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:13,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:13,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:13,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:13,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:31:13,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:31:13,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:18,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:18,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:18,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:18,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:31:18,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:31:18,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:21,413 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:31:21,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:31:21,508 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.586
+2025-10-02 03:31:21,509 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 03:31:21,509 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 03:31:22,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:22,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:22,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:23,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:31:23,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:31:23,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:23,940 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:31:23,973 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:31:24,064 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.960
+2025-10-02 03:31:24,065 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 03:31:24,066 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 03:31:26,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:26,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:26,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:26,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:31:26,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:31:26,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:28,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:28,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:28,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31: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:31:28,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:31:28,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:29,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:29,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:29,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:29,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:31:29,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:31:29,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:30,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:30,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:30,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:30,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:31:30,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:31:30,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:32,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:32,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:32,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:32,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:31:32,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:31:32,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:35,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:35,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:35,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:35,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 03:31:35,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 03:31:35,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:36,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:36,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:36,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:36,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:31:36,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:31:36,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:37,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:37,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:37,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:37,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:31:37,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:31:37,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:41,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:41,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:41,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:41,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:31:41,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:31:41,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:42,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:42,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:42,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:42,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:31:42,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:31:42,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:43,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:43,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:43,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:43,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:31:43,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:31:43,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:48,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:48,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:48,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:48,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:31:48,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:31:48,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:48,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:48,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:49,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:49,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:31:49,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:31:49,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:54,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:54,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:54,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:54,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:31:54,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:31:54,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:56,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:56,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:56,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:56,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:31:56,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:31:56,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:58,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:58,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:58,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:59,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:31:59,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:31:59,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:31:59,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:31:59,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:31:59,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:31:59,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:31:59,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:31:59,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:00,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:00,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:00,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:00,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s
+2025-10-02 03:32:00,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image)
+2025-10-02 03:32:00,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:00,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:00,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:00,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:01,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:32:01,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:32:01,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:01,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:01,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:01,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:01,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:32:01,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:32:01,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:01,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:01,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:01,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:01,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:32:01,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:32:01,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:04,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:04,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:04,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:04,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s
+2025-10-02 03:32:04,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image)
+2025-10-02 03:32:04,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:06,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:06,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:06,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:06,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 03:32:06,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 03:32:06,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:07,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:07,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:07,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:07,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 03:32:07,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 03:32:07,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:09,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:09,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:09,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:09,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 03:32:09,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 03:32:09,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:11,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:11,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:11,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:11,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:32:11,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:32:11,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:12,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:12,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:12,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:13,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:32:13,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:32:13,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:13,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:13,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:13,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:13,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:32:13,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:32:13,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:15,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:15,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:15,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:15,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:32:15,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:32:15,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:15,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:15,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:15,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:16,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:32:16,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:32:16,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:16,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:16,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:16,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:16,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:32:16,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:32:16,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:17,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:17,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:17,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:18,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:32:18,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:32:18,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:18,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:18,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:18,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:18,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:32:18,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:32:18,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:19,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:19,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:19,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:19,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 03:32:19,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 03:32:19,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:21,132 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:32:21,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:32:21,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:32:21,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.336s
+2025-10-02 03:32:21,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.336s (avg: 0.168s/image)
+2025-10-02 03:32:21,469 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:32:23,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:23,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:23,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:23,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:32:23,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:32:23,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:24,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:24,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:24,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:24,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:32:24,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:32:24,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:24,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:24,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:24,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:25,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:32:25,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:32:25,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:25,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:25,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:25,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:25,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 03:32:25,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 03:32:25,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:26,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:26,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:26,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:26,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:32:26,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:32:26,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:28,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:28,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:28,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:28,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:32:28,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:32:28,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:29,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:29,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:29,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:29,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:32:29,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:32:29,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:31,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:31,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:31,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:31,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:32:31,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:32:31,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:31,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:31,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:31,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:31,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:32:31,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:32:31,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:34,128 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:32:34,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:32:34,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:32:34,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s
+2025-10-02 03:32:34,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image)
+2025-10-02 03:32:34,427 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:32:34,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:34,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:34,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:35,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:32:35,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:32:35,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:36,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:36,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:36,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:36,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:32:36,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:32:36,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:37,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:37,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:37,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:37,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:32:37,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:32:37,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:37,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:37,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:38,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:38,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:32:38,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:32:38,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:39,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:39,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:39,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:39,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:32:39,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:32:39,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:40,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:40,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:40,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:40,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:32:40,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:32:40,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:42,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:42,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:42,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:43,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:32:43,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:32:43,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:44,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:44,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:44,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:44,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:32:44,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:32:44,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:45,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:45,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:45,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:45,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:32:45,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:32:45,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:45,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:45,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:45,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:45,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:32:45,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:32:45,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:48,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:48,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:48,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:48,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s
+2025-10-02 03:32:48,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image)
+2025-10-02 03:32:48,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:51,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:51,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:51,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:51,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:32:51,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:32:51,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:53,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:53,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:53,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:53,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:32:53,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:32:53,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:53,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:53,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:53,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:54,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:32:54,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:32:54,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:57,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:57,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:57,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:58,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:32:58,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:32:58,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:59,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:59,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:32:59,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:32:59,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 03:32:59,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 03:32:59,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:32:59,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:32:59,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:00,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:00,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:33:00,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:33:00,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:00,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:00,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:00,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:00,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:33:00,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:33:00,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:02,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:02,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:02,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:03,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:33:03,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:33:03,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:05,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:05,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:05,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:05,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:33:05,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:33:05,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:06,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:06,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:06,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:06,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:33:06,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:33:06,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:07,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:07,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:07,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:07,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:33:07,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:33:07,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:10,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:10,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:10,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:10,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:33:10,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:33:10,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:12,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:12,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:12,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:12,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:33:12,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:33:12,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:12,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:12,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:13,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:13,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:33:13,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:33:13,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:13,167 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:33:13,186 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:33:13,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=169.049
+2025-10-02 03:33:13,257 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s
+2025-10-02 03:33:13,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s
+2025-10-02 03:33:16,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:16,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:16,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:16,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:33:16,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:33:16,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:16,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:16,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:16,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:16,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:33:16,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:33:16,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:17,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:17,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:17,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:17,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:33:17,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:33:17,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:17,498 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:33:17,519 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:33:17,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.761
+2025-10-02 03:33:17,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 03:33:17,596 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 03:33:18,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:18,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:18,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:18,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:33:18,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:33:18,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:21,311 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:33:21,329 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(692, 692, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:33:21,409 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.539
+2025-10-02 03:33:21,410 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 03:33:21,410 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 03:33:21,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:21,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:21,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:21,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:33:21,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:33:21,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:23,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:23,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:23,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:23,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:33:23,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:33:23,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:24,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:24,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:24,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:24,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:33:24,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:33:24,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:26,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:26,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:26,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:26,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:33:26,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:33:26,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:26,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:26,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:26,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:26,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:33:26,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:33:26,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:29,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:29,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:29,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:29,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:33:29,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:33:29,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:29,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:29,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:29,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:29,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:33:29,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:33:29,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:31,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:31,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:31,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:31,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:33:31,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:33:31,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:33,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:33,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:33,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:33,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 03:33:33,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 03:33:33,221 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:35,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:35,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:35,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:35,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:33:35,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:33:35,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:37,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:37,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:37,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:37,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:33:37,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:33:37,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:39,027 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:33:39,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:33:39,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:33:39,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s
+2025-10-02 03:33:39,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image)
+2025-10-02 03:33:39,316 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:33:39,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:39,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:39,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:39,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:33:39,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:33:39,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:43,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:43,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:43,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:43,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:33:43,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:33:43,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:43,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:43,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:43,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:43,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:33:43,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:33:43,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:48,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:48,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:48,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:49,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:33:49,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:33:49,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:49,260 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:33:49,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:33:49,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.621
+2025-10-02 03:33:49,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 03:33:49,370 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 03:33:49,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:49,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:49,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:49,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:33:49,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:33:49,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:53,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:53,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:53,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:54,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 03:33:54,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 03:33:54,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:54,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:54,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:54,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:54,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:33:54,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:33:54,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:56,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:56,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:56,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:56,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:33:56,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:33:56,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:57,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:33:57,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:33:57,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.734
+2025-10-02 03:33:57,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 03:33:57,563 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 03:33:59,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:59,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:59,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:33:59,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 03:33:59,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 03:33:59,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:33:59,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:33:59,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:33:59,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:00,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:34:00,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:34:00,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:05,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:05,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:05,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:05,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 03:34:05,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 03:34:05,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:09,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:09,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:09,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:09,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:34:09,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:34:09,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:12,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:12,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:12,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:12,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:34:12,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:34:12,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:13,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:13,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:13,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:14,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:34:14,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:34:14,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:15,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:15,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:15,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:15,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:34:15,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:34:15,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:18,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:18,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:18,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:18,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:34:18,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:34:18,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:22,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:22,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:22,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:22,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:34:22,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:34:22,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:22,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:22,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:22,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:23,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:34:23,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:34:23,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:23,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:23,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:23,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:23,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 03:34:23,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 03:34:23,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:26,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:26,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:26,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:26,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:34:26,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:34:26,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:26,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:26,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:27,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:27,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:34:27,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:34:27,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:28,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:28,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:28,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:28,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:34:28,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:34:28,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:31,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:31,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:31,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:31,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:34:31,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:34:31,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:37,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:37,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:37,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:37,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:34:37,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:34:37,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:41,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:41,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:41,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:41,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:34:41,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:34:41,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:45,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:45,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:45,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:45,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:34:45,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:34:45,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:47,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:47,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:47,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:47,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:34:47,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:34:47,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:52,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:52,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:52,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:53,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:34:53,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:34:53,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:53,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:53,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:53,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:53,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:34:53,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:34:53,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:54,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:54,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:54,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:54,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:34:54,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:34:54,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:34:58,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:34:58,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:34:58,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:34:58,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:34:58,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:34:58,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:01,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:01,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:01,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:01,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:35:01,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:35:01,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:01,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:01,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:01,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:01,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:35:01,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:35:01,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:04,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:04,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:04,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:04,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:35:04,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:35:04,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:09,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:09,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:09,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:10,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 03:35:10,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 03:35:10,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:11,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:11,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:11,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:11,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:35:11,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:35:11,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:13,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:13,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:13,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:13,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:35:13,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:35:13,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:15,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:15,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:15,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:15,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:35:15,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:35:15,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:19,089 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:35:19,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:35:19,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:35:19,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s
+2025-10-02 03:35:19,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image)
+2025-10-02 03:35:19,384 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:35:20,982 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:35:21,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:35:21,084 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.598
+2025-10-02 03:35:21,084 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 03:35:21,084 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 03:35:21,227 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:35:21,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:35:21,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:35:21,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 03:35:21,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 03:35:21,510 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:35:25,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:25,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:25,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:25,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:35:25,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:35:25,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:28,794 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:35:28,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:35:28,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:35:29,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s
+2025-10-02 03:35:29,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image)
+2025-10-02 03:35:29,083 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:35:32,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:32,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:32,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:32,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:35:32,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:35:32,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:34,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:34,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:34,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:34,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:35:34,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:35:34,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:34,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:34,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:34,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:35,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 03:35:35,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 03:35:35,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:36,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:36,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:36,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:36,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:35:36,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:35:36,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:37,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:37,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:37,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:37,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:35:37,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:35:37,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:38,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:38,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:38,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:38,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:35:38,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:35:38,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:40,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:40,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:40,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:41,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:35:41,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:35:41,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:42,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:42,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:42,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:42,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:35:42,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:35:42,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:43,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:43,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:43,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:44,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:35:44,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:35:44,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:44,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:44,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:44,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:44,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:35:44,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:35:44,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:48,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:48,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:48,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:48,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:35:48,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:35:48,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:51,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:51,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:51,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:51,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:35:51,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:35:51,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:51,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:51,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:51,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:52,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:35:52,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:35:52,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:54,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:54,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:54,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:54,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:35:54,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:35:54,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:55,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:55,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:55,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:55,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 03:35:55,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 03:35:55,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:35:55,516 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:35:55,532 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:35:55,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.068
+2025-10-02 03:35:55,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 03:35:55,608 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 03:35:58,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:35:58,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:35:58,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:35:58,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:35:58,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:35:58,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:01,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:01,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:01,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:01,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:36:01,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:36:01,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:03,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:03,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:03,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:03,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:36:03,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:36:03,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:03,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:03,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:03,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:03,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:36:03,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:36:03,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:05,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:05,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:05,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:06,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 03:36:06,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 03:36:06,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:07,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:07,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:07,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:07,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:36:07,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:36:07,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:08,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:08,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:08,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:08,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:36:08,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:36:08,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:09,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:09,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:09,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:09,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:36:09,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:36:09,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:11,430 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:36:11,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:36:11,542 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.737
+2025-10-02 03:36:11,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 03:36:11,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 03:36:11,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:11,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:11,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:12,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:36:12,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:36:12,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:13,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:13,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:13,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:13,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:36:13,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:36:13,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:17,521 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:36:17,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:36:17,616 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.767
+2025-10-02 03:36:17,616 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 03:36:17,616 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 03:36:17,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:17,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:17,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:17,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:36:17,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:36:17,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:17,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:17,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:17,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:18,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:36:18,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:36:18,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:19,066 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:36:19,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:36:19,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:36:19,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s
+2025-10-02 03:36:19,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image)
+2025-10-02 03:36:19,355 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:36:22,116 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:36:22,143 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:36:22,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.009
+2025-10-02 03:36:22,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 03:36:22,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 03:36:22,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:22,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:22,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:22,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:36:22,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:36:22,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:23,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:23,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:23,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:23,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:36:23,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:36:23,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:27,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:27,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:27,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:28,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 03:36:28,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 03:36:28,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:28,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:28,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:28,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:28,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:36:28,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:36:28,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:36,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:36,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:36,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:37,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:36:37,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:36:37,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:38,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:38,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:38,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:38,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:36:38,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:36:38,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:39,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:39,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:39,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:39,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 03:36:39,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 03:36:39,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:40,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:40,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:40,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:40,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:36:40,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:36:40,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:47,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:47,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:47,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:47,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s
+2025-10-02 03:36:47,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image)
+2025-10-02 03:36:47,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:48,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:48,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:48,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:48,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:36:48,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:36:48,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:50,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:50,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:50,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:50,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:36:50,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:36:50,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:53,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:53,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:53,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:53,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:36:53,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:36:53,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:55,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:55,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:55,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:55,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 03:36:55,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 03:36:55,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:56,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:56,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:56,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:57,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:36:57,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:36:57,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:36:59,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:36:59,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:36:59,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:36:59,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 03:36:59,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 03:36:59,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:03,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:03,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:03,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:03,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:37:03,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:37:03,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:04,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:04,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:04,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:04,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s
+2025-10-02 03:37:04,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image)
+2025-10-02 03:37:04,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:04,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:04,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:05,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:05,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:37:05,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:37:05,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:05,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:05,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:05,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:05,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 03:37:05,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 03:37:05,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:05,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:05,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:05,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:06,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:37:06,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:37:06,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:06,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:06,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:06,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:06,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:37:06,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:37:06,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:11,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:11,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:11,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:11,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:37:11,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:37:11,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:13,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:13,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:13,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:13,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 03:37:13,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 03:37:13,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:14,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:14,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:14,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:14,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s
+2025-10-02 03:37:14,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image)
+2025-10-02 03:37:14,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:14,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:14,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:14,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:14,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:37:14,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:37:14,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:17,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:17,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:17,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:17,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:37:17,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:37:17,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:19,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:19,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:19,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:20,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 03:37:20,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 03:37:20,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:22,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:22,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:22,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:22,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:37:22,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:37:22,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:25,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:25,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:25,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:25,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:37:25,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:37:25,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:26,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:26,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:26,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:26,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:37:26,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:37:26,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:28,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:28,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:28,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:28,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 03:37:28,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 03:37:28,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:29,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:29,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:29,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:29,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 03:37:29,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 03:37:29,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:35,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:35,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:35,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:35,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:37:35,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:37:35,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:37,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:37,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:37,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:37,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:37:37,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:37:37,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:41,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:41,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:41,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:41,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:37:41,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:37:41,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:42,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:42,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:42,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:42,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:37:42,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:37:42,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:47,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:47,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:47,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:48,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:37:48,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:37:48,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:49,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:49,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:49,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:49,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:37:49,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:37:49,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:37:53,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:37:53,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:37:53,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:37:53,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:37:53,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:37:53,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:00,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:00,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:01,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:01,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:38:01,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:38:01,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:02,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:02,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:02,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:03,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 03:38:03,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 03:38:03,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:06,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:06,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:06,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:06,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:38:06,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:38:06,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:10,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:10,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:10,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:11,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:38:11,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:38:11,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:12,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:12,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:12,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:12,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:38:12,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:38:12,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:14,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:14,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:14,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:14,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 03:38:14,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 03:38:14,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:15,724 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:38:15,747 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:38:15,828 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=220.750
+2025-10-02 03:38:15,829 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 03:38:15,829 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 03:38:16,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:16,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:16,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:16,271 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:38:16,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:38:16,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:19,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:19,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:19,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:19,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:38:19,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:38:19,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:19,979 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:38:19,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:38:20,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:38:20,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s
+2025-10-02 03:38:20,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image)
+2025-10-02 03:38:20,283 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:38:24,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:24,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:24,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:24,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:38:24,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:38:24,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:27,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:27,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:27,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:27,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:38:27,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:38:27,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:28,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:28,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:28,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:28,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:38:28,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:38:28,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:30,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:30,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:30,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:30,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:38:30,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:38:30,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:32,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:32,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:32,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:32,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:38:32,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:38:32,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:35,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:35,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:35,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:35,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:38:35,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:38:35,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:35,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:35,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:35,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:36,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:38:36,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:38:36,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:36,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:36,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:36,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:36,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:38:36,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:38:36,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:37,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:37,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:37,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:37,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:38:37,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:38:37,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:37,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:37,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:37,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:37,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:38:37,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:38:37,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:40,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:40,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:40,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:40,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:38:40,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:38:40,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:43,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:43,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:43,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:43,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:38:43,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:38:43,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:43,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:43,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:43,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:44,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:38:44,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:38:44,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:44,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:44,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:44,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:44,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:38:44,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:38:44,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:44,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:44,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:44,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:44,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:38:44,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:38:44,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:45,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:45,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:45,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:45,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:38:45,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:38:45,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:48,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:48,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:48,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:48,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s
+2025-10-02 03:38:48,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image)
+2025-10-02 03:38:48,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:48,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:48,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:48,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:49,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:38:49,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:38:49,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:38:49,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:38:49,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:38:49,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:38:49,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:38:49,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:38:49,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:00,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:00,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:01,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:01,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:39:01,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:39:01,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:01,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:01,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:01,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:01,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:39:01,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:39:01,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:06,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:06,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:06,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:07,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:39:07,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:39:07,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:07,432 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:39:07,455 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:39:07,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.650
+2025-10-02 03:39:07,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 03:39:07,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 03:39:08,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:08,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:08,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:08,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:39:08,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:39:08,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:10,841 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:39:10,864 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:39:10,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.770
+2025-10-02 03:39:10,940 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 03:39:10,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 03:39:17,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:17,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:17,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:17,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:39:17,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:39:17,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:19,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:19,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:19,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:19,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:39:19,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:39:19,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:22,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:22,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:23,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:23,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 03:39:23,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 03:39:23,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:29,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:29,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:29,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:29,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:39:29,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:39:29,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:35,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:35,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:35,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:35,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:39:35,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:39:35,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:42,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:42,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:42,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:42,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:39:42,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:39:42,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:44,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:44,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:44,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:44,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:39:44,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:39:44,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:46,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:46,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:46,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:46,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:39:46,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:39:46,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:47,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:47,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:47,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:47,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:39:47,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:39:47,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:48,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:48,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:48,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:49,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:39:49,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:39:49,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:51,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:51,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:51,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:51,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:39:51,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:39:51,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:54,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:54,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:54,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:54,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:39:54,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:39:54,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:54,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:54,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:54,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:54,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:39:54,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:39:54,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:39:57,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:39:57,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:39:57,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:39:58,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:39:58,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:39:58,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:00,727 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:40:00,742 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:40:00,820 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.979
+2025-10-02 03:40:00,821 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 03:40:00,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 03:40:03,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:03,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:03,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:03,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:40:03,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:40:03,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:04,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:04,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:05,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:05,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:40:05,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:40:05,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:05,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:05,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:05,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:05,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.220s
+2025-10-02 03:40:05,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.220s (avg: 0.220s/image)
+2025-10-02 03:40:05,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:08,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:08,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:08,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:08,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:40:08,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:40:08,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:09,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:09,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:09,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:09,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:40:09,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:40:09,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:11,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:11,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:11,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:11,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:40:11,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:40:11,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:12,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:12,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:12,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:12,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:40:12,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:40:12,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:17,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:17,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:17,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:17,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:40:17,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:40:17,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:22,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:22,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:22,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:22,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:40:22,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:40:22,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:24,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:24,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:24,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:24,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:40:24,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:40:24,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:27,024 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:40:27,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:40:27,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:40:27,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s
+2025-10-02 03:40:27,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.161s/image)
+2025-10-02 03:40:27,347 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:40:28,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:28,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:28,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:28,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:40:28,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:40:28,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:30,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:30,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:30,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:30,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:40:30,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:40:30,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:31,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:31,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:31,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:31,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:40:31,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:40:31,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:32,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:32,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:32,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:32,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 03:40:32,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 03:40:32,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:34,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:34,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:34,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:34,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:40:34,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:40:34,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:36,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:36,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:36,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:37,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:40:37,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:40:37,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:37,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:37,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:37,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:37,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:40:37,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:40:37,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:38,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:38,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:38,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:38,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:40:38,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:40:38,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:39,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:39,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:39,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:39,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 03:40:39,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 03:40:39,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:42,207 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:40:42,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:40:42,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:40:42,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s
+2025-10-02 03:40:42,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image)
+2025-10-02 03:40:42,514 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:40:46,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:46,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:46,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:46,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:40:46,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:40:46,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:48,341 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:40:48,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:40:48,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:40:48,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 03:40:48,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 03:40:48,626 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:40:48,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:48,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:48,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:48,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:40:48,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:40:48,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:51,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:51,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:51,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:51,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:40:51,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:40:51,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:52,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:52,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:52,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:53,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:40:53,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:40:53,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:55,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:55,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:55,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:55,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:40:55,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:40:55,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:56,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:56,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:56,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:56,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:40:56,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:40:56,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:40:56,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:40:56,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:40:56,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:40:56,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:40:56,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:40:56,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:00,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:00,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:00,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:00,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:41:00,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:41:00,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:03,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:03,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:03,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:03,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:41:03,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:41:03,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:04,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:04,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:04,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:04,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:41:04,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:41:04,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:04,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:04,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:04,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:04,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:41:04,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:41:04,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:13,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:13,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:13,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:13,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:41:13,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:41:13,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:14,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:14,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:14,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:14,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:41:14,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:41:14,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:15,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:15,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:15,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:15,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:41:15,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:41:15,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:18,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:18,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:18,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:18,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:41:18,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:41:18,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:19,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:19,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:19,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:19,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 03:41:19,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 03:41:19,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:20,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:20,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:20,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:20,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 03:41:20,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 03:41:20,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:22,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:22,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:22,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:22,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s
+2025-10-02 03:41:22,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image)
+2025-10-02 03:41:22,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:23,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:23,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:23,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:23,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:41:23,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:41:23,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:27,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:27,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:27,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:28,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:41:28,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:41:28,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:29,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:29,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:29,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:29,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 03:41:29,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 03:41:29,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:30,176 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:41:30,217 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:41:30,308 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.700
+2025-10-02 03:41:30,309 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 03:41:30,309 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 03:41:32,903 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:41:32,942 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:41:33,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.557
+2025-10-02 03:41:33,036 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 03:41:33,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s
+2025-10-02 03:41:34,157 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:41:34,182 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:41:34,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.176
+2025-10-02 03:41:34,267 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 03:41:34,268 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 03:41:34,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:34,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:34,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:34,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:41:34,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:41:34,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:35,254 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:41:35,276 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:41:35,359 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.350
+2025-10-02 03:41:35,359 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 03:41:35,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 03:41:37,656 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:41:37,679 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:41:37,753 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.098
+2025-10-02 03:41:37,753 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 03:41:37,753 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 03:41:39,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:39,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:39,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:39,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:41:39,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:41:39,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:42,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:42,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:42,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:42,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:41:42,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:41:42,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:43,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:43,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:43,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:43,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:41:43,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:41:43,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:45,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:45,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:45,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:45,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:41:45,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:41:45,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:46,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:46,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:46,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:47,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:41:47,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:41:47,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:50,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:50,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:50,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:50,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:41:50,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:41:50,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:51,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:51,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:51,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:52,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:41:52,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:41:52,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:52,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:52,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:52,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:52,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:41:52,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:41:52,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:56,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:56,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:56,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:56,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:41:56,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:41:56,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:57,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:57,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:57,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:57,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:41:57,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:41:57,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:41:58,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:41:58,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:41:58,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:41:59,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:41:59,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:41:59,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:01,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:01,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:01,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:01,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:42:01,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:42:01,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:02,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:02,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:02,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:02,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:42:02,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:42:02,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:04,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:04,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:05,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:05,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:42:05,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:42:05,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:05,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:05,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:05,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:05,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:42:05,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:42:05,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:07,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:07,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:07,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:08,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:42:08,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:42:08,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:08,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:08,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:08,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:08,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:42:08,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:42:08,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:09,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:09,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:09,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:09,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:42:09,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:42:09,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:10,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:10,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:10,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:10,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:42:10,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:42:10,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:11,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:11,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:11,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:11,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:42:11,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:42:11,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:12,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:12,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:12,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:12,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s
+2025-10-02 03:42:12,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image)
+2025-10-02 03:42:12,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:13,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:13,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:13,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:13,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:42:13,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:42:13,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:14,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:14,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:15,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:15,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:42:15,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:42:15,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:16,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:16,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:16,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:16,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:42:16,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:42:16,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:20,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:20,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:20,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:20,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:42:20,826 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:42:20,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:21,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:21,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:21,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:21,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:42:21,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:42:21,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:21,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:21,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:21,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:21,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:42:21,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:42:21,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:22,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:22,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:22,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:22,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:42:22,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:42:22,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:23,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:23,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:23,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:23,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:42:23,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:42:23,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:24,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:24,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:24,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:24,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:42:24,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:42:24,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:24,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:24,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:24,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:24,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:42:24,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:42:24,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:27,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:27,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:27,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:27,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:42:27,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:42:27,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:28,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:28,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:28,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:28,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:42:28,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:42:28,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:28,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:28,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:28,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:28,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:42:28,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:42:28,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:32,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:32,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:32,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:32,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:42:32,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:42:32,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:32,702 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:42:32,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:42:32,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:42:32,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s
+2025-10-02 03:42:32,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image)
+2025-10-02 03:42:32,984 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:42:35,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:35,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:35,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:35,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:42:35,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:42:35,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:36,594 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:42:36,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:42:36,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:42:36,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s
+2025-10-02 03:42:36,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image)
+2025-10-02 03:42:36,857 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:42:36,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:42:36,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:42:37,006 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.023
+2025-10-02 03:42:37,007 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 03:42:37,007 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 03:42:37,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:37,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:37,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:37,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:42:37,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:42:37,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:38,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:38,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:38,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:38,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:42:38,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:42:38,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:40,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:40,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:40,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:40,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 03:42:40,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 03:42:40,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:41,132 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:42:41,155 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:42:41,237 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.698
+2025-10-02 03:42:41,237 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 03:42:41,237 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 03:42:41,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:41,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:41,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:41,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:42:41,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:42:41,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:41,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:41,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:42,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:42,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:42:42,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:42:42,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:43,904 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:42:43,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:42:43,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:42:44,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s
+2025-10-02 03:42:44,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image)
+2025-10-02 03:42:44,197 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:42:44,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:42:44,611 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:42:44,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.441
+2025-10-02 03:42:44,696 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 03:42:44,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 03:42:49,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:49,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:49,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:49,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:42:49,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:42:49,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:49,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:49,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:49,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:49,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:42:49,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:42:49,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:55,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:55,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:55,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:55,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:42:55,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:42:55,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:42:58,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:42:58,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:42:58,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:42:59,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:42:59,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:42:59,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:03,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:03,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:03,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:03,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:43:03,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:43:03,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:05,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:05,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:05,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:05,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:43:05,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:43:05,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:09,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:09,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:09,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:09,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:43:09,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:43:09,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:11,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:11,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:12,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:12,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:43:12,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:43:12,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:14,207 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:43:14,228 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:43:14,317 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.007
+2025-10-02 03:43:14,317 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 03:43:14,317 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 03:43:16,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:16,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:16,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:17,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:43:17,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:43:17,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:17,951 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:43:17,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:43:18,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.986
+2025-10-02 03:43:18,050 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 03:43:18,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 03:43:21,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:21,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:21,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:21,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:43:21,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:43:21,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:21,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:43:21,962 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:43:22,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.900
+2025-10-02 03:43:22,035 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 03:43:22,035 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 03:43:22,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:22,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:22,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:22,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:43:22,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:43:22,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:22,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:22,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:22,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:23,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:43:23,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:43:23,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:26,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:26,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:26,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:26,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:43:26,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:43:26,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:27,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:27,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:27,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:28,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:43:28,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:43:28,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:28,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:28,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:28,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:29,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:43:29,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:43:29,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:29,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:29,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:29,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:30,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:43:30,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:43:30,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:30,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:30,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:30,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:30,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:43:30,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:43:30,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:39,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:39,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:39,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:39,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:43:39,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:43:39,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:42,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:42,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:42,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:43,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:43:43,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:43:43,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:44,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:44,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:44,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:44,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:43:44,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:43:44,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:47,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:47,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:47,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:47,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:43:47,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:43:47,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:48,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:48,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:48,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:49,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:43:49,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:43:49,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:53,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:53,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:53,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:53,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:43:53,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:43:53,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:59,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:59,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:59,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:59,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:43:59,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:43:59,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:43:59,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:43:59,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:43:59,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:43:59,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:43:59,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:43:59,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:02,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:02,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:02,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:02,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 03:44:02,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 03:44:02,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:05,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:05,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:05,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:05,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:44:05,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:44:05,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:05,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:05,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:05,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:05,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:44:05,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:44:05,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:06,652 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:44:06,685 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:44:06,770 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.594
+2025-10-02 03:44:06,771 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 03:44:06,771 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 03:44:10,370 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:44:10,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:44:10,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:44:10,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s
+2025-10-02 03:44:10,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image)
+2025-10-02 03:44:10,657 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:44:13,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:44:13,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:44:13,227 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.498
+2025-10-02 03:44:13,227 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 03:44:13,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 03:44:15,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:15,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:15,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:15,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:44:15,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:44:15,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:15,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:15,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:15,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:15,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:44:15,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:44:15,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:16,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:16,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:16,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:16,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:44:16,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:44:16,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:16,869 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:44:16,893 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:44:16,966 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.495
+2025-10-02 03:44:16,966 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 03:44:16,966 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 03:44:20,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:20,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:20,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:20,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:44:20,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:44:20,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:20,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:20,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:20,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:20,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:44:20,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:44:20,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:21,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:21,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:21,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:21,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:44:21,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:44:21,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:25,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:25,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:25,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:26,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:44:26,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:44:26,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:27,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:27,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:27,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:27,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:44:27,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:44:27,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:31,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:31,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:31,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:32,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:44:32,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:44:32,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:33,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:33,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:33,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:33,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:44:33,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:44:33,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:34,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:34,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:34,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:34,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:44:34,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:44:34,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:37,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:37,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:37,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:37,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:44:37,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:44:37,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:37,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:37,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:37,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:37,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:44:37,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:44:37,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:39,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:39,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:39,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:39,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:44:39,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:44:39,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:42,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:42,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:42,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:42,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:44:42,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:44:42,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:43,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:43,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:43,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:43,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:44:43,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:44:43,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:44,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:44,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:44,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:44,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:44:44,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:44:44,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:46,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:46,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:46,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:46,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:44:46,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:44:46,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:48,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:48,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:48,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:48,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:44:48,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:44:48,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:50,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:50,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:50,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:50,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 03:44:50,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 03:44:50,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:50,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:50,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:50,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:50,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:44:50,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:44:50,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:52,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:52,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:52,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:52,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:44:52,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:44:52,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:54,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:54,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:54,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:54,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 03:44:54,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 03:44:54,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:55,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:55,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:55,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:55,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:44:55,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:44:55,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:57,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:57,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:57,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:57,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:44:57,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:44:57,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:58,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:58,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:58,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:58,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:44:58,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:44:58,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:58,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:58,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:58,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:58,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:44:58,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:44:58,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:44:59,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:44:59,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:44:59,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:44:59,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:44:59,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:44:59,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:00,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:00,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:00,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:00,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:45:00,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:45:00,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:03,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:03,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:03,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:03,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 03:45:03,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 03:45:03,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:06,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:06,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:06,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:06,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:45:06,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:45:06,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:09,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:09,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:09,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:09,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:45:09,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:45:09,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:11,245 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:45:11,272 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:45:11,356 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.776
+2025-10-02 03:45:11,357 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 03:45:11,357 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 03:45:12,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:12,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:12,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:12,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:45:12,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:45:12,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:13,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:13,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:13,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:14,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:45:14,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:45:14,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:15,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:15,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:15,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:16,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:45:16,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:45:16,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:18,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:18,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:18,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:18,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:45:18,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:45:18,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:20,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:20,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:20,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:20,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:45:20,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:45:20,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:22,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:22,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:22,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:22,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:45:22,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:45:22,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:23,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:23,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:23,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:23,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:45:23,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:45:23,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:24,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:24,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:24,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:24,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:45:24,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:45:24,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:25,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:25,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:25,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:25,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:45:25,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:45:25,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:27,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:27,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:27,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:27,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 03:45:27,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 03:45:27,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:27,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:27,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:27,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:28,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:45:28,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:45:28,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:28,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:28,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:28,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:28,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:45:28,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:45:28,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:29,678 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:45:29,716 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:45:29,820 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.172
+2025-10-02 03:45:29,820 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s
+2025-10-02 03:45:29,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s
+2025-10-02 03:45:30,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:30,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:30,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:30,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:45:30,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:45:30,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:32,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:32,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:32,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:32,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:45:32,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:45:32,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:32,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:32,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:32,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:33,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:45:33,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:45:33,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:33,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:33,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:33,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:33,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:45:33,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:45:33,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:36,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:36,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:36,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:36,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:45:36,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:45:36,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:37,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:37,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:37,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:37,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:45:37,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:45:37,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:41,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:41,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:42,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:42,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:45:42,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:45:42,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:42,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:42,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:42,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:42,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:45:42,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:45:42,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:42,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:42,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:42,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:43,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:45:43,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:45:43,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:44,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:44,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:44,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:44,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:45:44,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:45:44,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:46,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:46,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:46,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:46,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:45:46,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:45:46,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:46,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:46,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:46,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:47,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:45:47,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:45:47,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:49,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:49,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:49,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:49,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:45:49,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:45:49,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:50,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:50,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:50,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:50,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:45:50,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:45:50,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:51,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:51,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:51,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:51,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:45:51,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:45:51,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:52,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:52,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:52,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:52,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:45:52,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:45:52,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:54,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:54,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:54,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:54,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:45:54,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:45:54,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:55,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:45:55,396 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:45:55,481 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.451
+2025-10-02 03:45:55,482 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 03:45:55,482 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 03:45:56,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:45:56,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:45:56,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:45:56,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:45:56,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:45:56,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:45:59,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:45:59,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:45:59,298 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.057
+2025-10-02 03:45:59,298 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 03:45:59,300 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 03:46:00,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:00,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:00,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:01,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:46:01,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:46:01,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:02,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:02,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:02,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:02,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:46:02,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:46:02,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:02,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:46:02,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:46:02,847 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.316
+2025-10-02 03:46:02,847 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 03:46:02,847 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 03:46:08,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:08,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:08,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:09,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:46:09,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:46:09,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:09,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:09,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:09,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:09,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:46:09,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:46:09,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:09,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:09,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:09,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:09,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:46:09,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:46:09,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:12,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:12,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:12,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:12,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:46:12,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:46:12,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:13,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:13,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:13,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:13,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:46:13,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:46:13,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:15,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:15,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:15,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:15,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:46:15,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:46:15,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:17,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:17,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:17,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:17,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:46:17,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:46:17,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:18,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:18,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:18,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:18,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:46:18,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:46:18,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:19,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:19,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:19,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:20,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:46:20,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:46:20,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:22,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:22,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:22,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:22,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:46:22,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:46:22,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:22,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:22,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:22,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:22,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:46:22,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:46:22,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:24,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:24,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:24,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:24,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:46:24,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:46:24,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:27,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:27,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:27,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:27,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:46:27,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:46:27,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:29,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:29,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:29,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:29,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 03:46:29,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 03:46:29,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:30,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:30,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:30,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:30,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:46:30,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:46:30,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:31,989 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:46:31,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:46:32,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:46:32,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s
+2025-10-02 03:46:32,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image)
+2025-10-02 03:46:32,269 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:46:34,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:34,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:34,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:34,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:46:34,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:46:34,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:36,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:36,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:36,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:36,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:46:36,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:46:36,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:38,483 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:46:38,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:46:38,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:46:38,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s
+2025-10-02 03:46:38,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image)
+2025-10-02 03:46:38,775 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:46:38,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:38,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:39,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:39,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:46:39,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:46:39,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:39,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:39,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:40,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:40,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:46:40,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:46:40,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:40,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:40,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:40,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:40,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:46:40,601 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:46:40,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:40,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:40,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:40,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:40,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 03:46:40,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 03:46:40,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:43,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:43,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:43,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:44,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:46:44,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:46:44,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:44,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:44,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:44,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:44,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:46:44,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:46:44,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:44,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:44,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:44,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:45,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 03:46:45,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 03:46:45,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:45,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:45,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:45,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:45,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:46:45,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:46:45,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:45,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:45,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:45,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:46,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:46:46,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:46:46,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:46,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:46,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:46,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:47,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:46:47,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:46:47,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:50,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:50,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:50,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:51,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:46:51,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:46:51,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:51,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:51,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:51,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:51,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:46:51,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:46:51,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:51,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:51,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:51,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:51,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:46:51,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:46:51,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:52,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:52,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:52,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:52,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 03:46:52,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 03:46:52,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:52,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:52,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:52,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:52,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:46:52,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:46:52,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:54,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:54,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:54,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:54,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:46:54,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:46:54,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:55,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:55,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:55,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:55,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 03:46:55,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 03:46:55,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:56,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:56,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:56,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:56,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:46:56,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:46:56,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:56,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:56,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:56,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:56,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:46:56,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:46:56,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:46:58,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:46:58,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:46:58,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:46:58,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:46:58,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:46:58,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:00,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:00,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:00,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:00,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:47:00,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:47:00,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:01,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:01,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:01,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:01,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:47:01,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:47:01,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:02,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:02,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:02,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:02,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:47:02,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:47:02,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:06,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:06,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:06,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:06,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s
+2025-10-02 03:47:06,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image)
+2025-10-02 03:47:06,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:07,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:07,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:07,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:07,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:47:07,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:47:07,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:07,874 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:47:07,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:47:07,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:47:08,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 03:47:08,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image)
+2025-10-02 03:47:08,158 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:47:10,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:10,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:10,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:10,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:47:10,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:47:10,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:14,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:14,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:14,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:14,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:47:14,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:47:14,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:15,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:15,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:15,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:15,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:47:15,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:47:15,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:16,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:16,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:16,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:16,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:47:16,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:47:16,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:20,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:20,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:20,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:20,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:47:20,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:47:20,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:25,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:25,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:25,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:25,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:47:25,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:47:25,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:27,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:27,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:27,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:27,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 03:47:27,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 03:47:27,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:30,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:30,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:30,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:30,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:47:30,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:47:30,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:33,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:33,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:33,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:33,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:47:33,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:47:33,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:38,327 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:47:38,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:47:38,439 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.918
+2025-10-02 03:47:38,439 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 03:47:38,440 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 03:47:38,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:38,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:38,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:38,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:47:38,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:47:38,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:40,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:40,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:40,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:40,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:47:40,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:47:40,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:43,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:43,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:43,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:43,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:47:43,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:47:43,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:44,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:44,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:44,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:44,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:47:44,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:47:44,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:49,096 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:47:49,121 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:47:49,208 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.580
+2025-10-02 03:47:49,208 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 03:47:49,211 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 03:47:49,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:47:49,360 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:47:49,454 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.242
+2025-10-02 03:47:49,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s
+2025-10-02 03:47:49,455 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s
+2025-10-02 03:47:50,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:50,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:50,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:50,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.207s
+2025-10-02 03:47:50,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.207s (avg: 0.207s/image)
+2025-10-02 03:47:50,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:53,935 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:47:53,956 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:47:54,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.200
+2025-10-02 03:47:54,049 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 03:47:54,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 03:47:54,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:54,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:54,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:54,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:47:54,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:47:54,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:56,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:47:56,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:47:56,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:47:56,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:47:56,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:47:56,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:47:57,529 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:47:57,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:47:57,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.137
+2025-10-02 03:47:57,636 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 03:47:57,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 03:48:07,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:07,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:07,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:07,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:48:07,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:48:07,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:12,996 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:48:12,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:48:13,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:48:13,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s
+2025-10-02 03:48:13,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image)
+2025-10-02 03:48:13,294 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:48:17,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:17,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:17,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:17,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:48:17,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:48:17,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:19,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:19,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:19,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:19,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:48:19,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:48:19,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:19,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:19,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:19,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:19,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:48:19,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:48:19,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:20,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:20,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:20,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:20,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:48:20,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:48:20,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:20,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:20,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:20,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:20,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 03:48:20,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 03:48:20,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:21,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:21,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:21,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:21,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:48:21,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:48:21,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:24,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:24,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:24,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:24,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:48:24,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:48:24,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:24,697 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:48:24,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:48:24,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:48:25,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s
+2025-10-02 03:48:25,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image)
+2025-10-02 03:48:25,007 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:48:25,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:25,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:25,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:26,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:48:26,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:48:26,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:31,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:31,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:31,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:31,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:48:31,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:48:31,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:31,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:31,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:31,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:31,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:48:31,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:48:31,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:32,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:32,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:32,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:32,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:48:32,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:48:32,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:33,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:33,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:33,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:33,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:48:33,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:48:33,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:33,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:33,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:33,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:33,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:48:33,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:48:33,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:36,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:36,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:36,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:37,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:48:37,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:48:37,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:37,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:37,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:37,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:37,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:48:37,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:48:37,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:41,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:41,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:41,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:41,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:48:41,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:48:41,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:41,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:41,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:41,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:42,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 03:48:42,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 03:48:42,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:43,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:43,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:43,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:43,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:48:43,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:48:43,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:44,307 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:48:44,334 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:48:44,422 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.128
+2025-10-02 03:48:44,422 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 03:48:44,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 03:48:45,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:45,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:45,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:45,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:48:45,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:48:45,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:46,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:46,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:46,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:46,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:48:46,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:48:46,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:47,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:47,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:47,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:47,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:48:47,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:48:47,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:50,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:50,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:50,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:50,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:48:50,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:48:50,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:48:54,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:48:54,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:48:54,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:48:54,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:48:54,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:48:54,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:00,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:00,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:00,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:00,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:49:00,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:49:00,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:02,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:02,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:02,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:02,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:49:02,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:49:02,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:03,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:03,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:03,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:03,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:49:03,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:49:03,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:04,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:04,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:04,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:04,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:49:04,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:49:04,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:06,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:06,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:06,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:06,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:49:06,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:49:06,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:08,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:08,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:08,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:08,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:49:08,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:49:08,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:10,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:10,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:10,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:10,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:49:10,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:49:10,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:12,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:12,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:12,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:12,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:49:12,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:49:12,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:13,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:13,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:13,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:13,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:49:13,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:49:13,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:19,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:19,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:19,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:20,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:49:20,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:49:20,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:21,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:21,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:21,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:21,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:49:21,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:49:21,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:21,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:21,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:21,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:22,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:49:22,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:49:22,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:22,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:22,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:22,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:22,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:49:22,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:49:22,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:25,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:25,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:25,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:25,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:49:25,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:49:25,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:27,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:27,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:27,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:27,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:49:27,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:49:27,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:29,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:29,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:29,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:29,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:49:29,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:49:29,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:31,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:31,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:31,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:31,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:49:31,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:49:31,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:32,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:32,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:32,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:32,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:49:32,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:49:32,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:34,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:34,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:34,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:34,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:49:34,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:49:34,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:35,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:35,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:35,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:36,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:49:36,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:49:36,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:36,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:36,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:36,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:36,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:49:36,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:49:36,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:38,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:38,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:38,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:38,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:49:38,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:49:38,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:40,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:40,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:40,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:40,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:49:40,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:49:40,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:41,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:41,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:42,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:42,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:49:42,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:49:42,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:42,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:42,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:42,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:42,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:49:42,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:49:42,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:47,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:47,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:47,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:47,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:49:47,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:49:47,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:48,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:48,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:48,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:48,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 03:49:48,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 03:49:48,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:48,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:48,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:48,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:48,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:49:48,993 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:49:48,993 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:50,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:50,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:50,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:50,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:49:50,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:49:50,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:52,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:52,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:52,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:52,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:49:52,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:49:52,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:54,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:54,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:54,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:54,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:49:54,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:49:54,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:56,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:56,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:56,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:56,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:49:56,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:49:56,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:57,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:57,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:57,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:57,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:49:57,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:49:57,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:49:59,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:49:59,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:49:59,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:49:59,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:49:59,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:49:59,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:00,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:00,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:00,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:01,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:50:01,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:50:01,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:02,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:02,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:02,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:02,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:50:02,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:50:02,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:05,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:05,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:05,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:05,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:50:05,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:50:05,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:08,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:08,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:08,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:08,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 03:50:08,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 03:50:08,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:11,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:11,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:12,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:12,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:50:12,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:50:12,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:12,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:12,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:13,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:13,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:50:13,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:50:13,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:13,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:13,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:13,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:13,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:50:13,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:50:13,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:14,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:14,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:14,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:14,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:50:14,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:50:14,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:14,964 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:50:14,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:50:15,060 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.935
+2025-10-02 03:50:15,061 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 03:50:15,061 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 03:50:18,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:18,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:18,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:18,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:50:18,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:50:18,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:18,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:18,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:18,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:18,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:50:18,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:50:18,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:20,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:20,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:20,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:20,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:50:20,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:50:20,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:21,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:21,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:21,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:21,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:50:21,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:50:21,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:23,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:23,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:23,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:23,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:50:23,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:50:23,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:26,423 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:50:26,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:50:26,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:50:26,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s
+2025-10-02 03:50:26,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image)
+2025-10-02 03:50:26,695 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:50:29,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:29,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:29,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:29,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 03:50:29,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 03:50:29,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:33,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:33,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:33,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:33,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:50:33,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:50:33,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:34,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:34,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:34,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:34,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:50:34,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:50:34,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:34,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:34,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:34,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:34,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:50:34,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:50:34,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:35,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:35,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:35,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:35,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:50:35,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:50:35,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:36,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:50:36,698 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:50:36,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=149.344
+2025-10-02 03:50:36,786 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 03:50:36,786 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 03:50:40,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:40,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:40,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:40,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:50:40,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:50:40,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:40,924 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:50:40,948 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:50:41,031 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.083
+2025-10-02 03:50:41,031 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 03:50:41,031 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 03:50:41,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:41,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:41,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:41,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:50:41,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:50:41,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:43,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:43,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:43,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:43,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:50:43,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:50:43,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:44,899 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:50:44,922 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:50:45,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=166.653
+2025-10-02 03:50:45,000 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 03:50:45,000 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 03:50:46,793 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:50:46,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:50:46,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.535
+2025-10-02 03:50:46,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 03:50:46,896 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 03:50:47,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:47,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:47,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:47,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:50:47,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:50:47,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:48,004 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:50:48,026 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:50:48,106 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.620
+2025-10-02 03:50:48,107 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 03:50:48,108 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 03:50:49,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:49,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:49,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:49,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:50:49,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:50:49,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:50,491 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:50:50,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:50:50,599 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.766
+2025-10-02 03:50:50,600 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 03:50:50,600 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 03:50:52,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:52,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:52,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:52,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 03:50:52,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 03:50:52,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:54,509 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:50:54,536 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:50:54,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.357
+2025-10-02 03:50:54,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 03:50:54,627 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 03:50:56,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:56,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:56,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:56,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:50:56,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:50:56,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:57,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:57,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:57,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:58,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:50:58,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:50:58,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:50:58,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:50:58,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:50:58,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:50:59,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 03:50:59,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 03:50:59,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:00,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:00,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:00,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:00,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:51:00,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:51:00,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:01,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:01,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:01,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:01,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:51:01,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:51:01,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:05,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:05,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:05,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:05,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:51:05,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:51:05,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:05,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:05,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:05,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:05,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:51:05,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:51:05,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:06,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:06,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:06,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:06,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:51:06,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:51:06,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:08,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:08,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:08,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:08,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 03:51:08,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 03:51:08,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:11,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:11,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:11,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:11,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 03:51:11,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 03:51:11,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:11,626 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:51:11,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:51:11,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.301
+2025-10-02 03:51:11,738 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 03:51:11,740 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 03:51:12,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:12,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:13,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:13,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:51:13,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:51:13,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:14,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:14,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:14,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:14,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:51:14,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:51:14,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:15,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:15,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:15,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:15,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:51:15,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:51:15,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:16,811 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:51:16,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:51:16,928 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.735
+2025-10-02 03:51:16,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 03:51:16,929 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 03:51:19,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:19,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:19,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:19,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:51:19,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:51:19,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:20,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:20,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:20,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:20,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:51:20,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:51:20,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:21,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:51:21,668 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:51:21,754 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.630
+2025-10-02 03:51:21,754 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 03:51:21,756 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 03:51:22,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:22,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:22,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:22,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.208s
+2025-10-02 03:51:22,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image)
+2025-10-02 03:51:22,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:22,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:22,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:22,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:23,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:51:23,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:51:23,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:23,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:23,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:23,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:23,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:51:23,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:51:23,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:26,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:26,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:26,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:26,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:51:26,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:51:26,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:26,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:26,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:26,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:26,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:51:26,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:51:26,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:27,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:27,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:27,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:27,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:51:27,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:51:27,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:27,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:27,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:27,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:27,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:51:27,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:51:27,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:28,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:28,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:28,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:28,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:51:28,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:51:28,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:30,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:30,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:30,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:30,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:51:30,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:51:30,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:31,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:31,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:31,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:31,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:51:31,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:51:31,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:31,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:31,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:31,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:32,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:51:32,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:51:32,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:32,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:32,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:32,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:32,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 03:51:32,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 03:51:32,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:32,793 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:51:32,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:51:32,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:51:33,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s
+2025-10-02 03:51:33,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image)
+2025-10-02 03:51:33,082 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:51:33,855 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:51:33,885 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:51:33,974 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.961
+2025-10-02 03:51:33,974 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 03:51:33,976 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 03:51:34,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:34,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:35,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:35,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:51:35,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:51:35,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:39,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:51:39,790 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:51:39,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.483
+2025-10-02 03:51:39,881 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 03:51:39,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 03:51:40,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:40,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:40,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:40,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:51:40,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:51:40,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:41,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:41,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:41,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:41,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:51:41,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:51:41,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:42,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:42,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:42,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:42,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:51:42,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:51:42,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:43,657 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:51:43,678 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:51:43,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.696
+2025-10-02 03:51:43,767 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 03:51:43,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 03:51:45,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:45,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:45,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:45,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:51:45,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:51:45,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:46,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:46,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:46,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:46,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:51:46,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:51:46,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:49,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:49,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:49,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:49,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:51:49,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:51:49,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:49,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:49,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:49,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:49,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:51:49,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:51:49,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:50,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:50,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:50,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:50,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:51:50,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:51:50,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:50,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:50,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:50,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:50,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 03:51:50,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 03:51:50,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:52,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:52,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:52,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:53,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 03:51:53,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 03:51:53,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:56,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:56,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:56,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:56,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:51:56,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:51:56,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:51:57,297 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:51:57,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:51:57,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:51:57,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s
+2025-10-02 03:51:57,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image)
+2025-10-02 03:51:57,588 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:51:58,002 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs.
+2025-10-02 03:51:58,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB
+2025-10-02 03:51:58,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행
+2025-10-02 03:51:58,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.409s
+2025-10-02 03:51:58,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.409s (avg: 0.136s/image)
+2025-10-02 03:51:58,412 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs.
+2025-10-02 03:51:58,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:51:58,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:51:58,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:51:58,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 03:51:58,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 03:51:58,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:02,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:02,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:02,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:02,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:52:02,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:52:02,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:02,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:02,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:02,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:03,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:52:03,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:52:03,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:03,227 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:52:03,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:52:03,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:52:03,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s
+2025-10-02 03:52:03,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image)
+2025-10-02 03:52:03,517 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:52:03,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:52:03,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:52:03,846 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.457
+2025-10-02 03:52:03,846 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s
+2025-10-02 03:52:03,846 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s
+2025-10-02 03:52:03,882 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:52:03,893 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(714, 780, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:52:03,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.313
+2025-10-02 03:52:03,958 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s
+2025-10-02 03:52:03,958 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.065s
+2025-10-02 03:52:04,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:04,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:04,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:04,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:52:04,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:52:04,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:08,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:08,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:08,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:08,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 03:52:08,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 03:52:08,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:08,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:08,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:08,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:09,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:52:09,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:52:09,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:10,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:10,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:10,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:10,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:52:10,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:52:10,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:11,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:11,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:11,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:11,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:52:11,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:52:11,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:12,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:12,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:12,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:12,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:52:12,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:52:12,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:16,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:52:16,736 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:52:16,807 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.598
+2025-10-02 03:52:16,807 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s
+2025-10-02 03:52:16,807 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s
+2025-10-02 03:52:17,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:17,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:17,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:17,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:52:17,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:52:17,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:18,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:18,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:18,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:19,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:52:19,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:52:19,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:22,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:22,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:22,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:22,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:52:22,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:52:22,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:22,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:22,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:23,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:23,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:52:23,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:52:23,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:24,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:24,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:24,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:24,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:52:24,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:52:24,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:25,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:25,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:25,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:26,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:52:26,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:52:26,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:28,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:28,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:28,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:28,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:52:28,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:52:28,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:30,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:30,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:30,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:31,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:52:31,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:52:31,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:31,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:31,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:31,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:31,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:52:31,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:52:31,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:33,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:33,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:33,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:33,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:52:33,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:52:33,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:34,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:34,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:34,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:34,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:52:34,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:52:34,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:35,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:35,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:35,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:35,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:52:35,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:52:35,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:35,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:35,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:35,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:35,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:52:35,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:52:35,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:38,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:38,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:38,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:38,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:52:38,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:52:38,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:39,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:39,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:39,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:39,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:52:39,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:52:39,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:39,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:39,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:39,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:40,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:52:40,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:52:40,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:40,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:40,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:40,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:40,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:52:40,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:52:40,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:41,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:41,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:41,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:41,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:52:41,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:52:41,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:43,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:43,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:43,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:43,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:52:43,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:52:43,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:44,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:44,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:44,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:44,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:52:44,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:52:44,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:44,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:44,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:44,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:44,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:52:44,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:52:44,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:45,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:45,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:45,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:45,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:52:45,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:52:45,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:46,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:46,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:46,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:46,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:52:46,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:52:46,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:47,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:47,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:47,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:47,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:52:47,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:52:47,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:49,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:49,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:49,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:49,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:52:49,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:52:49,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:49,909 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:52:49,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:52:49,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:52:50,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s
+2025-10-02 03:52:50,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image)
+2025-10-02 03:52:50,202 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:52:52,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:52,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:52,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:52,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 03:52:52,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 03:52:52,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:53,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:53,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:53,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:53,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:52:53,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:52:53,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:53,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:53,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:53,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:54,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:52:54,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:52:54,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:54,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:54,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:54,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:54,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:52:54,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:52:54,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:54,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:54,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:54,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:54,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:52:54,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:52:54,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:58,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:58,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:58,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:52:58,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:52:58,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:52:58,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:52:59,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:52:59,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:52:59,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:00,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:53:00,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:53:00,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:00,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:00,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:00,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:00,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:53:00,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:53:00,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:02,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:02,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:02,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:02,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:53:02,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:53:02,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:02,825 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:53:02,850 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:53:02,933 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.816
+2025-10-02 03:53:02,933 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 03:53:02,936 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 03:53:03,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:03,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:03,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:03,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:53:03,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:53:03,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:05,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:05,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:05,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:05,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:53:05,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:53:05,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:08,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:08,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:08,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:08,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:53:08,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:53:08,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:10,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:10,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:10,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:10,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:53:10,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:53:10,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:11,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:11,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:11,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:11,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:53:11,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:53:11,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:12,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:12,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:12,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:12,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:53:12,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:53:12,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:14,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:14,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:14,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:14,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:53:14,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:53:14,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:15,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:15,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:15,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:16,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:53:16,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:53:16,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:18,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:18,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:18,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:18,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:53:18,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:53:18,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:20,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:20,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:20,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:20,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 03:53:20,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 03:53:20,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:20,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:20,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:20,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:21,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:53:21,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:53:21,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:21,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:21,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:21,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:21,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:53:21,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:53:21,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:22,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:22,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:22,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:22,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:53:22,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:53:22,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:25,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:25,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:25,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:25,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:53:25,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:53:25,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:25,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:25,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:25,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:25,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:53:25,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:53:25,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:27,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:27,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:27,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:27,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:53:27,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:53:27,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:27,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:27,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:27,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:27,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:53:27,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:53:27,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:28,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:28,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:28,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:28,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:53:28,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:53:28,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:28,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:28,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:28,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:28,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:53:28,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:53:28,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:29,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:29,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:29,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:29,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:53:29,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:53:29,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:32,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:32,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:32,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:32,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 03:53:32,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 03:53:32,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:32,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:32,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:32,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:32,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:53:32,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:53:32,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:32,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:32,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:32,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:32,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:53:32,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:53:32,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:33,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:33,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:34,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:34,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:53:34,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:53:34,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:35,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:35,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:35,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:35,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:53:35,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:53:35,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:37,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:37,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:37,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:37,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:53:37,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:53:37,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:38,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:38,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:38,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:39,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:53:39,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:53:39,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:39,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:39,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:39,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:39,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:53:39,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:53:39,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:40,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:40,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:40,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:40,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:53:40,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:53:40,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:41,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:41,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:41,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:41,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:53:41,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:53:41,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:42,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:42,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:42,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:42,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:53:42,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:53:42,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:43,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:43,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:43,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:43,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:53:43,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:53:43,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:44,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:44,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:44,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:44,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:53:44,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:53:44,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:44,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:44,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:44,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:44,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:53:44,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:53:44,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:46,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:46,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:46,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:46,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:53:46,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:53:46,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:47,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:47,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:47,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:47,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:53:47,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:53:47,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:48,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:48,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:48,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:48,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:53:48,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:53:48,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:48,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:48,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:48,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:49,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:53:49,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:53:49,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:50,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:50,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:50,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:51,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:53:51,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:53:51,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:52,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:52,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:52,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:52,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:53:52,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:53:52,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:53,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:53,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:53,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:53,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:53:53,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:53:53,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:53,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:53,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:54,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:54,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:53:54,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:53:54,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:57,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:57,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:57,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:57,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:53:57,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:53:57,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:57,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:57,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:57,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:53:58,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:53:58,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:53:58,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:53:59,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:53:59,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:53:59,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:00,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:54:00,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:54:00,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:00,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:00,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:00,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:00,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:54:00,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:54:00,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:01,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:01,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:01,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:01,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:54:01,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:54:01,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:01,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:01,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:01,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:01,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:54:01,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:54:01,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:03,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:03,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:03,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:03,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:54:03,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:54:03,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:04,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:04,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:04,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:04,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:54:04,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:54:04,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:06,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:06,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:06,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:06,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:54:06,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:54:06,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:07,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:07,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:07,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:07,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:54:07,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:54:07,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:07,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:07,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:07,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:07,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:54:07,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:54:07,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:08,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:08,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:08,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:08,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:54:08,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:54:08,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:09,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:09,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:09,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:09,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 03:54:09,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 03:54:09,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:09,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:09,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:10,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:10,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:54:10,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:54:10,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:10,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:10,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:10,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:10,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:54:10,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:54:10,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:11,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:11,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:11,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:11,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:54:11,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:54:11,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:12,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:12,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:12,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:12,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:54:12,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:54:12,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:12,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:12,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:12,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:12,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:54:12,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:54:12,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:14,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:14,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:14,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:14,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:54:14,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:54:14,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:15,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:15,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:15,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:15,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:54:15,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:54:15,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:18,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:18,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:18,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:19,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:54:19,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:54:19,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:19,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:19,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:19,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:19,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:54:19,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:54:19,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:20,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:20,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:20,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:20,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:54:20,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:54:20,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:21,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:21,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:21,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:21,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:54:21,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:54:21,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:22,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:22,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:23,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:23,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:54:23,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:54:23,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:25,187 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:54:25,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:54:25,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:54:25,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s
+2025-10-02 03:54:25,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image)
+2025-10-02 03:54:25,490 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:54:26,036 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:54:26,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:54:26,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:54:26,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s
+2025-10-02 03:54:26,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image)
+2025-10-02 03:54:26,346 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:54:26,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:26,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:26,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:26,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:54:26,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:54:26,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:31,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:31,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:31,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:31,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:54:31,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:54:31,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:34,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:54:34,584 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:54:34,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.455
+2025-10-02 03:54:34,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 03:54:34,672 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 03:54:35,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:35,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:35,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:35,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:54:35,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:54:35,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:35,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:35,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:35,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:35,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:54:35,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:54:35,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:39,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:39,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:39,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:39,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:54:39,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:54:39,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:41,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:41,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:41,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:41,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:54:41,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:54:41,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:42,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:42,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:43,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:43,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:54:43,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:54:43,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:44,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:44,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:44,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:44,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:54:44,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:54:44,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:46,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:46,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:46,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:46,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:54:46,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:54:46,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:48,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:48,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:48,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:49,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:54:49,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:54:49,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:50,649 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:54:50,670 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:54:50,745 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.438
+2025-10-02 03:54:50,745 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 03:54:50,745 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 03:54:50,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:50,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:51,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:51,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:54:51,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:54:51,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:53,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:53,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:53,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:53,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:54:53,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:54:53,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:53,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:53,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:53,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:53,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:54:53,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:54:53,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:54,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:54,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:54,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:54,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:54:54,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:54:54,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:57,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:57,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:57,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:57,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:54:57,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:54:57,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:54:58,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:54:58,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:54:58,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:54:58,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:54:58,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:54:58,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:01,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:01,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:01,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:01,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:55:01,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:55:01,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:01,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:01,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:01,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:01,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:55:01,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:55:01,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:01,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:01,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:02,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:02,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:55:02,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:55:02,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:08,266 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:55:08,294 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:55:08,383 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.082
+2025-10-02 03:55:08,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 03:55:08,384 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 03:55:09,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:09,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:09,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:09,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:55:09,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:55:09,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:13,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:55:13,502 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:55:13,590 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.100
+2025-10-02 03:55:13,590 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 03:55:13,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 03:55:17,284 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:55:17,314 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:55:17,400 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.118
+2025-10-02 03:55:17,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 03:55:17,401 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 03:55:18,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:18,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:18,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:18,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:55:18,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:55:18,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:18,824 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:55:18,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:55:18,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.231
+2025-10-02 03:55:18,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 03:55:18,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 03:55:20,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:20,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:20,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:20,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:55:20,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:55:20,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:22,767 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:55:22,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:55:22,872 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.606
+2025-10-02 03:55:22,872 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 03:55:22,873 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 03:55:23,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:23,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:23,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:23,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:55:23,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:55:23,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:23,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:23,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:23,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:24,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:55:24,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:55:24,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:24,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:24,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:24,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:24,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:55:24,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:55:24,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:26,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:26,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:26,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:26,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:55:26,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:55:26,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:27,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:27,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:27,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:27,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:55:27,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:55:27,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:27,899 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:55:27,921 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:55:27,994 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.577
+2025-10-02 03:55:27,995 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 03:55:27,995 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 03:55:28,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:28,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:28,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:28,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:55:28,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:55:28,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:32,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:32,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:32,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:32,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:55:32,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:55:32,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:34,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:34,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:34,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:34,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s
+2025-10-02 03:55:34,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image)
+2025-10-02 03:55:34,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:34,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:34,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:34,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:35,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:55:35,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:55:35,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:35,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:35,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:35,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:36,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:55:36,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:55:36,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:41,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:41,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:41,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:41,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:55:41,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:55:41,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:43,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:43,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:43,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:44,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:55:44,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:55:44,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:44,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:44,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:44,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:44,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:55:44,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:55:44,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:44,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:44,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:45,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:45,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:55:45,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:55:45,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:46,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:46,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:46,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:46,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 03:55:46,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 03:55:46,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:49,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:49,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:49,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:49,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:55:49,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:55:49,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:50,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:50,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:50,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:50,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:55:50,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:55:50,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:50,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:50,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:50,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:51,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 03:55:51,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 03:55:51,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:51,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:51,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:51,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:51,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:55:51,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:55:51,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:51,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:51,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:51,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:51,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:55:51,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:55:51,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:54,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:54,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:54,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:55,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:55:55,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:55:55,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:56,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:56,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:56,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:56,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:55:56,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:55:56,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:58,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:58,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:59,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:59,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:55:59,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:55:59,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:55:59,177 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:55:59,194 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:55:59,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.060
+2025-10-02 03:55:59,274 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 03:55:59,274 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 03:55:59,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:55:59,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:55:59,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:55:59,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:55:59,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:55:59,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:01,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:01,794 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:01,875 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.695
+2025-10-02 03:56:01,876 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 03:56:01,876 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 03:56:02,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:02,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:02,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:02,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:56:02,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:56:02,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:03,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:03,940 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:04,016 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.790
+2025-10-02 03:56:04,017 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 03:56:04,017 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 03:56:04,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:04,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:04,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:04,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:56:04,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:56:04,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:07,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:07,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:07,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:07,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 03:56:07,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 03:56:07,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:07,877 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:07,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:07,966 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.767
+2025-10-02 03:56:07,966 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 03:56:07,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 03:56:08,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:08,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:08,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:08,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:56:08,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:56:08,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:09,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:09,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:09,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:09,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 03:56:09,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 03:56:09,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:11,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:11,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:11,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:11,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:56:11,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:56:11,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:13,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:13,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:13,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:13,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:56:13,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:56:13,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:14,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:14,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:14,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:14,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:56:14,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:56:14,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:14,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:14,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:14,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:14,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:56:14,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:56:14,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:16,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:16,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:16,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:17,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:56:17,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:56:17,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:17,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:17,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:17,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:17,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:56:17,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:56:17,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:18,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:18,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:18,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:18,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:56:18,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:56:18,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:19,786 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:19,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:19,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:19,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:56:19,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:56:19,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:20,125 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:56:20,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:56:20,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:56:20,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s
+2025-10-02 03:56:20,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image)
+2025-10-02 03:56:20,420 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:56:23,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:23,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:23,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:24,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:56:24,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:56:24,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:25,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:25,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:25,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:25,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:56:25,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:56:25,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:28,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:28,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:28,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:29,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:56:29,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:56:29,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:29,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:29,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:29,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:29,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:56:29,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:56:29,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:30,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:30,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:30,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:30,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:56:30,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:56:30,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:34,236 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:34,271 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:34,382 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.611
+2025-10-02 03:56:34,382 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s
+2025-10-02 03:56:34,384 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s
+2025-10-02 03:56:34,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:34,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:34,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:35,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:56:35,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:56:35,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:35,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:35,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:35,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:35,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:56:35,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:56:35,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:37,878 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:37,912 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:38,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.635
+2025-10-02 03:56:38,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s
+2025-10-02 03:56:38,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.108s
+2025-10-02 03:56:42,081 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:42,104 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:42,208 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.786
+2025-10-02 03:56:42,208 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s
+2025-10-02 03:56:42,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s
+2025-10-02 03:56:42,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:42,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:42,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:42,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:56:42,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:56:42,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:42,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:42,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:42,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:42,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:56:42,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:56:42,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:43,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:43,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:43,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:43,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:56:43,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:56:43,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:44,347 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:44,374 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:44,466 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.070
+2025-10-02 03:56:44,467 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 03:56:44,467 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 03:56:47,138 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:56:47,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:56:47,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:56:47,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s
+2025-10-02 03:56:47,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image)
+2025-10-02 03:56:47,420 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:56:47,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:47,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:47,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:47,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:56:47,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:56:47,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:48,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:48,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:48,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:49,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:56:49,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:56:49,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:50,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:50,847 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:50,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.605
+2025-10-02 03:56:50,939 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 03:56:50,941 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 03:56:54,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:54,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:54,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:54,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 03:56:54,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 03:56:54,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:54,632 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:54,655 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:54,748 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.621
+2025-10-02 03:56:54,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 03:56:54,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s
+2025-10-02 03:56:55,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:55,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:55,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:56,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:56:56,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:56:56,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:57,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:57,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:57,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:57,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:56:57,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:56:57,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:56:58,734 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:56:58,760 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:56:58,843 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.850
+2025-10-02 03:56:58,844 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 03:56:58,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 03:56:59,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:56:59,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:56:59,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:56:59,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:56:59,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:56:59,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:02,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:02,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:02,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:02,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:57:02,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:57:02,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:03,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:03,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:03,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:03,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:57:03,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:57:03,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:06,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:06,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:06,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:06,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:57:06,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:57:06,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:07,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:07,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:07,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:08,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:57:08,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:57:08,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:10,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:10,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:10,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:10,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:57:10,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:57:10,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:13,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:13,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:13,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:13,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 03:57:13,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 03:57:13,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:13,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:13,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:13,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:13,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 03:57:13,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 03:57:13,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:14,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:14,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:14,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:14,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:57:14,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:57:14,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:17,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:17,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:17,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:18,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:57:18,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:57:18,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:18,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:18,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:18,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:18,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:57:18,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:57:18,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:22,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:22,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:22,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:22,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:57:22,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:57:22,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:23,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:23,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:23,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:23,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:57:23,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:57:23,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:24,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:24,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:24,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:24,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:57:24,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:57:24,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:25,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:25,253 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:25,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:25,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:57:25,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:57:25,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:28,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:28,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:28,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:28,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:57:28,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:57:28,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:28,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:28,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:28,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:28,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:57:28,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:57:28,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:31,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:31,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:32,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:32,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:57:32,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:57:32,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:32,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:32,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:32,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:32,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:57:32,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:57:32,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:34,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:34,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:34,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:34,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:57:34,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:57:34,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:35,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:35,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:35,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:35,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:57:35,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:57:35,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:38,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:38,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:38,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:38,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:57:38,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:57:38,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:38,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:38,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:38,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:38,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 03:57:38,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 03:57:38,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:39,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:39,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:39,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:39,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:57:39,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:57:39,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:39,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:39,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:39,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:39,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:57:39,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:57:39,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:41,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:41,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:41,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:41,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:57:41,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:57:41,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:44,107 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:57:44,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:57:44,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:57:44,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s
+2025-10-02 03:57:44,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.158s/image)
+2025-10-02 03:57:44,425 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:57:45,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:45,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:45,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:46,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:57:46,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:57:46,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:48,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:48,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:49,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:49,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:57:49,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:57:49,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:49,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:49,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:49,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:49,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:57:49,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:57:49,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:49,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:49,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:49,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:49,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:57:49,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:57:49,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:50,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:50,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:50,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:50,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:57:50,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:57:50,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:51,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:51,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:51,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:52,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:57:52,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:57:52,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:53,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:53,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:53,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:54,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:57:54,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:57:54,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:54,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:54,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:54,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:54,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:57:54,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:57:54,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:54,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:54,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:54,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:55,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:57:55,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:57:55,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:55,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:55,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:55,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:55,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:57:55,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:57:55,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:58,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:58,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:58,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:57:58,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:57:58,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:57:58,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:57:59,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:57:59,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:57:59,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:00,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 03:58:00,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 03:58:00,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:01,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:01,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:01,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:02,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 03:58:02,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 03:58:02,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:04,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:04,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:04,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:04,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:58:04,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:58:04,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:04,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:04,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:04,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:04,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 03:58:04,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 03:58:04,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:05,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:05,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:05,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:05,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:58:05,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:58:05,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:05,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:58:05,776 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:58:05,862 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=14.746
+2025-10-02 03:58:05,862 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 03:58:05,862 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 03:58:06,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:58:06,585 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:58:06,664 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.891
+2025-10-02 03:58:06,664 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 03:58:06,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 03:58:07,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:07,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:07,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:07,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:58:07,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:58:07,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:07,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:07,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:08,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:08,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s
+2025-10-02 03:58:08,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image)
+2025-10-02 03:58:08,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:10,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:58:10,072 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:58:10,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.352
+2025-10-02 03:58:10,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s
+2025-10-02 03:58:10,179 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s
+2025-10-02 03:58:12,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:12,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:12,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:12,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:58:12,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:58:12,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:13,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:13,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:13,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:13,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 03:58:13,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 03:58:13,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:22,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:22,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:22,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:22,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:58:22,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:58:22,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:27,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:27,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:27,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:27,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:58:27,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:58:27,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:28,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:28,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:28,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:29,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:58:29,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:58:29,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:29,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:29,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:29,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:29,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 03:58:29,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 03:58:29,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:32,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:32,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:32,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:32,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 03:58:32,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 03:58:32,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:34,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:34,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:34,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:34,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 03:58:34,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 03:58:34,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:34,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:34,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:34,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:34,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 03:58:34,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 03:58:34,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:35,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:35,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:35,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:35,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 03:58:35,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 03:58:35,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:36,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:36,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:36,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:36,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 03:58:36,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 03:58:36,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:36,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:36,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:37,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:37,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 03:58:37,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 03:58:37,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:41,882 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:58:41,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:58:41,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:58:42,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s
+2025-10-02 03:58:42,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image)
+2025-10-02 03:58:42,161 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:58:42,310 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:58:42,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:58:42,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:58:42,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s
+2025-10-02 03:58:42,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image)
+2025-10-02 03:58:42,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:58:43,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:43,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:43,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:43,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 03:58:43,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 03:58:43,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:43,640 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:58:43,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:58:43,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:58:43,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s
+2025-10-02 03:58:43,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image)
+2025-10-02 03:58:43,920 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:58:45,536 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:58:45,576 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:58:45,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.978
+2025-10-02 03:58:45,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s
+2025-10-02 03:58:45,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s
+2025-10-02 03:58:48,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:48,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:48,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:48,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 03:58:48,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 03:58:48,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:48,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:48,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:48,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:48,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:58:48,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:58:48,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:49,752 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:58:49,781 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:58:49,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.783
+2025-10-02 03:58:49,869 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 03:58:49,869 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 03:58:53,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:58:53,524 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(933, 720, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:58:53,602 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.300
+2025-10-02 03:58:53,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 03:58:53,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 03:58:54,088 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:58:54,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:58:54,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:58:54,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s
+2025-10-02 03:58:54,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image)
+2025-10-02 03:58:54,396 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:58:56,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:56,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:57,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:57,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 03:58:57,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 03:58:57,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:58:57,926 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:58:57,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:58:57,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:58:58,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 03:58:58,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 03:58:58,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:01,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:01,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:01,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:01,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:59:01,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:59:01,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:03,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:03,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:03,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:03,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:59:03,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:59:03,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:05,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:05,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:05,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:05,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:59:05,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:59:05,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:07,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:07,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:07,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:07,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:59:07,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:59:07,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:10,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:10,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:10,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:10,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:59:10,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:59:10,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:11,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:11,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:12,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:12,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:59:12,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:59:12,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:12,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:12,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:12,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:12,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 03:59:12,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 03:59:12,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:12,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:12,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:13,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:13,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 03:59:13,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 03:59:13,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:14,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:14,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:14,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:14,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 03:59:14,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 03:59:14,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:18,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:18,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:18,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:18,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:59:18,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:59:18,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:20,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:20,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:20,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:21,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:59:21,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:59:21,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:22,207 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:59:22,231 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(747, 748, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:59:22,315 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.120
+2025-10-02 03:59:22,315 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 03:59:22,316 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 03:59:23,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:23,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:23,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:23,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 03:59:23,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 03:59:23,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:23,672 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:59:23,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:59:23,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:59:23,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s
+2025-10-02 03:59:23,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.129s/image)
+2025-10-02 03:59:23,933 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:59:26,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:59:26,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:59:26,228 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.038
+2025-10-02 03:59:26,229 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 03:59:26,229 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 03:59:26,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:26,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:26,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:26,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s
+2025-10-02 03:59:26,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image)
+2025-10-02 03:59:26,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:26,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:26,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:26,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:27,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s
+2025-10-02 03:59:27,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image)
+2025-10-02 03:59:27,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:29,798 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:59:29,824 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:59:29,919 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.006
+2025-10-02 03:59:29,919 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s
+2025-10-02 03:59:29,921 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s
+2025-10-02 03:59:30,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:30,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:30,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:30,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 03:59:30,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 03:59:30,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:32,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:32,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:32,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:32,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 03:59:32,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 03:59:32,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:32,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:32,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:32,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:32,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 03:59:32,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 03:59:32,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:33,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:33,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:33,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:33,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:59:33,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:59:33,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:35,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:35,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:35,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:35,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 03:59:35,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 03:59:35,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:36,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:36,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:36,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:36,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 03:59:36,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 03:59:36,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:37,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:37,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:37,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:37,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 03:59:37,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 03:59:37,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:41,378 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 03:59:41,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 03:59:41,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 03:59:41,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s
+2025-10-02 03:59:41,699 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image)
+2025-10-02 03:59:41,700 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 03:59:43,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:43,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:43,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:43,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 03:59:43,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 03:59:43,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:48,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:48,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:48,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:48,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 03:59:48,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 03:59:48,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:48,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:48,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:48,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:48,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 03:59:48,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 03:59:48,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:51,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:51,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:51,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:51,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 03:59:51,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 03:59:51,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:51,973 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:59:51,995 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:59:52,079 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.575
+2025-10-02 03:59:52,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 03:59:52,079 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 03:59:52,218 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:59:52,240 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:59:52,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.623
+2025-10-02 03:59:52,319 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 03:59:52,321 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 03:59:52,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:52,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:52,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:52,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 03:59:52,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 03:59:52,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:56,587 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 03:59:56,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 03:59:56,698 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.519
+2025-10-02 03:59:56,699 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 03:59:56,700 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 03:59:57,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:57,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:57,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:57,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 03:59:57,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 03:59:57,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:57,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:57,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:57,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:58,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:59:58,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:59:58,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 03:59:59,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 03:59:59,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 03:59:59,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 03:59:59,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 03:59:59,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 03:59:59,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:00,813 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:00:00,834 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:00:00,922 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.519
+2025-10-02 04:00:00,922 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:00:00,923 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:00:00,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:00,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:00,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:01,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:00:01,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:00:01,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:01,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:01,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:01,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:01,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:00:01,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:00:01,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:03,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:03,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:03,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:04,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:00:04,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:00:04,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:10,011 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:00:10,042 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:00:10,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.191
+2025-10-02 04:00:10,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:00:10,122 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:00:10,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:10,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:10,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:10,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s
+2025-10-02 04:00:10,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image)
+2025-10-02 04:00:10,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:10,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:10,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:10,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:10,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:00:10,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:00:10,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:11,739 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:00:11,756 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:00:11,830 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.903
+2025-10-02 04:00:11,830 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:00:11,830 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:00:14,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:14,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:14,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:14,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:00:14,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:00:14,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:15,431 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:00:15,470 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:00:15,571 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.719
+2025-10-02 04:00:15,571 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s
+2025-10-02 04:00:15,572 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s
+2025-10-02 04:00:17,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:17,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:17,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:17,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:00:17,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:00:17,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:18,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:18,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:18,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:18,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:00:18,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:00:18,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:19,049 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:00:19,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:00:19,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:00:19,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s
+2025-10-02 04:00:19,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image)
+2025-10-02 04:00:19,343 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:00:19,976 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:00:20,013 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:00:20,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.799
+2025-10-02 04:00:20,103 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 04:00:20,104 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 04:00:20,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:20,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:20,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:20,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:00:20,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:00:20,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:21,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:21,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:21,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:21,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:00:21,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:00:21,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:26,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:26,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:26,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:26,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:00:26,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:00:26,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:27,684 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:00:27,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:00:27,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:00:27,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 04:00:27,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image)
+2025-10-02 04:00:27,968 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:00:34,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:34,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:35,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:35,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:00:35,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:00:35,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:35,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:35,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:35,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:35,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:00:35,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:00:35,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:41,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:41,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:41,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:41,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:00:41,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:00:41,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:42,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:42,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:42,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:42,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:00:42,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:00:42,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:45,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:45,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:45,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:45,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 04:00:45,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 04:00:45,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:45,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:45,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:45,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:45,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:00:45,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:00:45,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:47,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:47,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:47,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:47,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:00:47,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:00:47,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:47,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:47,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:47,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:48,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:00:48,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:00:48,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:48,674 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:00:48,690 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:00:48,764 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.790
+2025-10-02 04:00:48,765 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:00:48,765 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:00:48,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:48,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:48,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:48,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:00:48,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:00:48,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:51,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:51,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:51,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:51,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:00:51,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:00:51,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:52,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:52,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:52,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:52,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:00:52,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:00:52,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:54,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:54,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:54,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:54,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:00:54,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:00:54,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:55,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:55,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:55,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:55,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:00:55,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:00:55,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:00:56,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:00:56,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:00:56,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:00:56,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:00:56,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:00:56,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:01,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:01,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:01,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:01,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:01:01,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:01:01,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:01,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:01,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:01,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:01,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:01:01,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:01:01,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:02,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:02,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:02,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:03,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:01:03,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:01:03,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:04,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:04,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:04,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:04,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:01:04,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:01:04,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:06,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:06,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:06,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:07,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:01:07,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:01:07,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:07,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:07,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:07,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:07,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:01:07,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:01:07,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:07,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:07,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:07,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:08,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:01:08,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:01:08,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:08,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:08,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:08,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:08,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:01:08,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:01:08,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:09,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:09,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:09,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:09,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:01:09,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:01:09,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:10,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:10,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:10,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:10,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:01:10,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:01:10,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:11,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:11,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:11,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:11,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:01:11,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:01:11,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:13,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:13,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:13,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:14,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:01:14,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:01:14,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:14,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:14,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:14,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:14,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:01:14,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:01:14,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:15,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:15,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:15,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:15,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 04:01:15,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 04:01:15,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:15,493 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:01:15,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:01:15,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:01:15,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s
+2025-10-02 04:01:15,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image)
+2025-10-02 04:01:15,788 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:01:16,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:16,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:16,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:16,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:01:16,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:01:16,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:18,988 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:01:18,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:01:19,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:01:19,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s
+2025-10-02 04:01:19,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image)
+2025-10-02 04:01:19,258 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:01:22,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:22,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:22,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:23,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:01:23,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:01:23,056 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:24,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:24,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:24,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:24,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:01:24,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:01:24,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:24,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:24,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:24,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:24,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:01:24,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:01:24,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:28,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:28,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:28,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:28,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:01:28,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:01:28,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:30,018 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:01:30,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:01:30,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:01:30,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 04:01:30,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 04:01:30,301 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:01:30,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:30,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:30,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:30,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s
+2025-10-02 04:01:30,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image)
+2025-10-02 04:01:30,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:33,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:33,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:33,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:33,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:01:33,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:01:33,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:37,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:37,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:37,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:37,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:01:37,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:01:37,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:39,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:39,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:39,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:39,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:01:39,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:01:39,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:40,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:40,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:40,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:40,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:01:40,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:01:40,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:41,181 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:01:41,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:01:41,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:01:41,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s
+2025-10-02 04:01:41,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image)
+2025-10-02 04:01:41,442 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:01:42,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:42,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:42,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:42,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:01:42,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:01:42,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:46,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:46,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:46,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:46,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:01:46,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:01:46,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:47,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:47,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:47,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:47,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:01:47,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:01:47,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:50,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:50,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:50,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:50,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:01:50,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:01:50,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:51,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:51,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:51,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:51,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:01:51,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:01:51,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:51,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:51,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:51,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:51,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:01:51,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:01:51,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:54,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:54,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:54,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:54,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:01:54,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:01:54,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:55,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:55,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:55,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:56,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:01:56,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:01:56,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:56,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:56,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:56,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:56,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:01:56,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:01:56,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:58,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:01:58,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:01:58,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:01:58,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s
+2025-10-02 04:01:58,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image)
+2025-10-02 04:01:58,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:01:59,698 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:01:59,720 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:01:59,810 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.583
+2025-10-02 04:01:59,810 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 04:01:59,812 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 04:02:01,290 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:02:01,316 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:02:01,405 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.810
+2025-10-02 04:02:01,405 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:02:01,406 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:02:01,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:01,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:01,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:01,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:02:01,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:02:01,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:02,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:02,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:02,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:02,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:02:02,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:02:02,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:06,399 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs.
+2025-10-02 04:02:06,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB
+2025-10-02 04:02:06,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행
+2025-10-02 04:02:06,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.422s
+2025-10-02 04:02:06,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.422s (avg: 0.141s/image)
+2025-10-02 04:02:06,822 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs.
+2025-10-02 04:02:06,981 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:02:07,003 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:02:07,088 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.980
+2025-10-02 04:02:07,088 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:02:07,089 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:02:09,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:09,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:09,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:09,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:02:09,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:02:09,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:10,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:10,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:10,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:10,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 04:02:10,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 04:02:10,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:10,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:02:10,743 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:02:10,828 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.507
+2025-10-02 04:02:10,828 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:02:10,828 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:02:12,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:12,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:12,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:12,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:02:12,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:02:12,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:15,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:15,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:15,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:15,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:02:15,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:02:15,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:16,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:16,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:16,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:16,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:02:16,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:02:16,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:18,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:18,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:18,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:19,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:02:19,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:02:19,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:19,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:19,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:19,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:19,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:02:19,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:02:19,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:19,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:19,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:19,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:19,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:02:19,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:02:19,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:25,035 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:02:25,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:02:25,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:02:25,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s
+2025-10-02 04:02:25,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image)
+2025-10-02 04:02:25,351 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:02:27,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:27,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:27,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:27,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:02:27,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:02:27,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:28,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:28,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:28,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:28,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:02:28,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:02:28,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:29,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:29,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:29,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:29,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:02:29,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:02:29,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:29,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:29,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:29,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:29,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:02:29,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:02:29,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:31,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:31,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:31,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:31,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s
+2025-10-02 04:02:31,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image)
+2025-10-02 04:02:31,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:33,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:33,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:33,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:33,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:02:33,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:02:33,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:37,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:37,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:37,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:38,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:02:38,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:02:38,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:38,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:38,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:38,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:38,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:02:38,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:02:38,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:43,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:43,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:43,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:43,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:02:43,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:02:43,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:45,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:45,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:45,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:45,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:02:45,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:02:45,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:46,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:46,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:46,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:46,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.126s
+2025-10-02 04:02:46,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.126s (avg: 0.126s/image)
+2025-10-02 04:02:46,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:47,098 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:02:47,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:02:47,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:02:47,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s
+2025-10-02 04:02:47,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image)
+2025-10-02 04:02:47,392 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:02:49,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:49,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:49,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:49,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:02:49,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:02:49,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:52,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:52,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:52,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:52,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:02:52,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:02:52,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:53,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:53,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:53,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:53,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:02:53,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:02:53,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:53,497 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:02:53,520 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:02:53,602 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.799
+2025-10-02 04:02:53,603 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 04:02:53,603 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:02:53,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:53,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:53,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:54,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:02:54,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:02:54,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:57,591 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:02:57,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:02:57,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.500
+2025-10-02 04:02:57,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:02:57,695 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:02:58,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:02:58,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:02:58,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:02:58,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:02:58,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:02:58,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:02:59,139 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:02:59,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:02:59,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:02:59,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s
+2025-10-02 04:02:59,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image)
+2025-10-02 04:02:59,450 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:03:01,760 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:03:01,783 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:03:01,867 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.491
+2025-10-02 04:03:01,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:03:01,868 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:03:04,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:04,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:04,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:04,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:03:04,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:03:04,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:05,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:05,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:05,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:06,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:03:06,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:03:06,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:08,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:08,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:08,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:08,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:03:08,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:03:08,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:11,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:11,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:11,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:11,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:03:11,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:03:11,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:11,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:11,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:11,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:11,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:03:11,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:03:11,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:11,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:11,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:11,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:11,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:03:11,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:03:11,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:15,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:15,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:15,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:15,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:03:15,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:03:15,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:17,021 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:03:17,042 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(726, 767, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:03:17,118 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.442
+2025-10-02 04:03:17,119 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:03:17,119 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:03:17,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:17,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:17,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:17,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:03:17,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:03:17,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:18,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:18,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:18,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:18,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 04:03:18,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 04:03:18,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:19,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:19,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:19,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:19,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:03:19,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:03:19,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:22,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:22,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:22,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:22,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:03:22,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:03:22,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:23,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:23,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:23,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:23,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:03:23,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:03:23,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:23,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:23,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:23,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:23,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:03:23,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:03:23,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:23,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:23,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:23,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:23,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:03:23,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:03:23,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:24,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:24,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:24,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:24,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:03:24,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:03:24,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:29,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:29,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:29,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:29,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:03:29,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:03:29,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:31,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:31,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:31,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:31,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:03:31,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:03:31,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:32,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:32,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:32,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:32,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:03:32,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:03:32,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:34,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:34,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:34,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:34,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:03:34,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:03:34,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:34,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:34,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:34,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:34,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:03:34,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:03:34,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:34,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:34,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:34,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:35,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:03:35,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:03:35,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:38,339 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:03:38,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:03:38,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:03:38,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s
+2025-10-02 04:03:38,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image)
+2025-10-02 04:03:38,635 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:03:39,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:39,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:39,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:39,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:03:39,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:03:39,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:39,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:39,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:39,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:39,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 04:03:39,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 04:03:39,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:40,273 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:03:40,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:03:40,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:03:40,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s
+2025-10-02 04:03:40,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image)
+2025-10-02 04:03:40,569 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:03:44,969 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:03:44,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:03:45,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:03:45,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s
+2025-10-02 04:03:45,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image)
+2025-10-02 04:03:45,287 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:03:45,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:45,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:45,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:45,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:03:45,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:03:45,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:45,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:45,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:45,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:46,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:03:46,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:03:46,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:48,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:48,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:48,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:48,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:03:48,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:03:48,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:50,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:50,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:50,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:50,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:03:50,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:03:50,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:51,147 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:03:51,166 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:03:51,242 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.840
+2025-10-02 04:03:51,243 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:03:51,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:03:51,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:51,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:51,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:51,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:03:51,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:03:51,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:51,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:51,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:51,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:51,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 04:03:51,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 04:03:51,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:52,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:52,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:52,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:52,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:03:52,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:03:52,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:53,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:53,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:53,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:53,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:03:53,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:03:53,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:56,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:56,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:56,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:57,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:03:57,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:03:57,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:57,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:57,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:57,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:57,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:03:57,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:03:57,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:57,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:57,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:57,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:58,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:03:58,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:03:58,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:58,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:58,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:58,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:58,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:03:58,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:03:58,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:03:58,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:03:58,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:03:58,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:03:59,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:03:59,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:03:59,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:00,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:00,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:00,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:00,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:04:00,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:04:00,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:00,908 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:00,930 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:01,010 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.193
+2025-10-02 04:04:01,011 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:04:01,011 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:04:02,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:02,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:02,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:02,731 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:04:02,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:04:02,732 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:03,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:03,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:03,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:03,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:04:03,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:04:03,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:03,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:03,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:03,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:03,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:04:03,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:04:03,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:04,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:04,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:04,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:04,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:04:04,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:04:04,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:07,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:07,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:07,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:08,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:04:08,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:04:08,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:08,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:08,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:08,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:08,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:04:08,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:04:08,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:08,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:08,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:08,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:08,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:04:08,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:04:08,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:09,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:09,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:10,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:10,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:04:10,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:04:10,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:11,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:11,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:11,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:11,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:04:11,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:04:11,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:13,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:13,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:13,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:13,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:04:13,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:04:13,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:14,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:14,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:14,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:14,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:04:14,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:04:14,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:18,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:18,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:18,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:18,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:04:18,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:04:18,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:20,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:20,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:20,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:20,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:04:20,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:04:20,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:25,895 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:25,919 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:26,003 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.282
+2025-10-02 04:04:26,003 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:04:26,004 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:04:27,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:27,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:27,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:27,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:04:27,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:04:27,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:27,869 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:27,893 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:27,967 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=180.237
+2025-10-02 04:04:27,967 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:04:27,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:04:28,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:28,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:28,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:28,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:04:28,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:04:28,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:28,988 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:29,011 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:29,087 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.735
+2025-10-02 04:04:29,087 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:04:29,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:04:32,114 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:32,138 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:32,220 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.442
+2025-10-02 04:04:32,220 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 04:04:32,221 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 04:04:33,744 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:33,767 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:33,841 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=136.441
+2025-10-02 04:04:33,841 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:04:33,841 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:04:36,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:36,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:36,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:36,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 04:04:36,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 04:04:36,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:37,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:37,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:37,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:37,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:04:37,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:04:37,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:38,035 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:38,053 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:38,133 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.078
+2025-10-02 04:04:38,133 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:04:38,133 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:04:38,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:38,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:38,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:38,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s
+2025-10-02 04:04:38,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image)
+2025-10-02 04:04:38,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:40,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:40,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:40,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:40,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:04:40,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:04:40,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:43,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:43,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:43,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:43,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:04:43,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:04:43,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:43,844 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:43,862 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:43,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.586
+2025-10-02 04:04:43,940 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 04:04:43,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 04:04:44,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:44,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:44,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:45,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:04:45,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:04:45,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:45,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:45,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:45,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:45,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:04:45,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:04:45,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:47,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:47,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:47,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:47,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:04:47,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:04:47,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:47,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:47,705 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:47,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.271
+2025-10-02 04:04:47,781 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:04:47,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:04:49,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:49,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:49,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:49,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:04:49,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:04:49,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:49,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:49,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:49,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:50,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:04:50,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:04:50,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:51,134 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:04:51,153 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:04:51,227 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.497
+2025-10-02 04:04:51,228 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:04:51,228 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:04:51,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:51,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:51,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:51,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:04:51,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:04:51,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:52,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:52,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:52,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:52,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:04:52,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:04:52,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:53,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:53,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:53,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:53,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:04:53,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:04:53,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:54,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:54,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:54,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:54,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:04:54,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:04:54,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:54,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:54,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:54,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:54,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:04:54,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:04:54,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:56,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:56,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:56,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:56,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:04:56,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:04:56,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:56,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:56,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:57,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:57,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:04:57,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:04:57,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:58,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:58,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:58,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:58,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:04:58,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:04:58,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:04:58,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:04:58,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:04:58,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:04:58,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:04:58,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:04:58,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:00,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:00,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:00,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:00,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:05:00,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:05:00,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:00,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:00,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:00,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:00,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:05:00,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:05:00,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:02,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:02,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:02,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:02,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:05:02,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:05:02,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:04,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:04,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:04,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:04,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:05:04,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:05:04,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:05,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:05,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:05,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:05,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:05:05,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:05:05,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:09,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:09,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:09,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:10,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:05:10,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:05:10,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:12,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:12,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:12,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:12,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:05:12,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:05:12,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:18,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:18,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:18,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:18,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:05:18,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:05:18,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:18,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:18,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:18,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:18,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:05:18,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:05:18,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:19,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:19,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:19,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:19,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:05:19,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:05:19,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:20,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:20,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:20,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:20,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 04:05:20,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 04:05:20,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:22,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:22,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:22,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:22,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:05:22,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:05:22,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:22,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:22,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:22,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:22,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:05:22,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:05:22,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:23,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:23,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:23,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:23,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:05:23,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:05:23,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:24,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:24,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:24,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:24,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:05:24,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:05:24,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:25,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:25,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:25,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:25,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:05:25,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:05:25,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:25,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:25,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:25,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:25,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:05:25,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:05:25,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:26,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:26,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:26,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:26,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:05:26,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:05:26,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:27,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:27,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:27,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:27,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:05:27,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:05:27,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:29,317 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:05:29,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:05:29,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:05:29,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.250s
+2025-10-02 04:05:29,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.250s (avg: 0.125s/image)
+2025-10-02 04:05:29,569 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:05:31,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:31,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:31,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:32,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:05:32,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:05:32,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:32,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:32,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:32,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:32,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:05:32,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:05:32,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:32,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:32,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:32,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:33,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:05:33,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:05:33,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:34,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:34,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:34,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:34,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:05:34,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:05:34,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:36,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:36,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:36,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:37,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:05:37,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:05:37,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:37,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:37,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:37,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:37,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:05:37,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:05:37,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:41,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:41,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:41,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:41,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:05:41,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:05:41,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:42,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:42,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:42,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:42,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:05:42,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:05:42,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:42,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:42,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:42,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:42,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:05:42,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:05:42,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:42,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:42,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:42,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:42,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:05:42,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:05:42,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:42,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:42,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:42,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:43,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:05:43,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:05:43,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:43,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:43,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:43,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:43,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:05:43,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:05:43,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:44,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:44,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:44,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:45,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:05:45,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:05:45,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:45,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:45,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:45,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:45,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:05:45,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:05:45,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:46,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:46,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:46,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:46,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:05:46,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:05:46,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:48,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:48,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:48,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:48,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:05:48,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:05:48,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:49,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:49,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:49,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:49,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:05:49,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:05:49,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:50,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:50,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:50,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:50,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:05:50,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:05:50,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:52,128 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:05:52,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:05:52,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:05:52,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.328s
+2025-10-02 04:05:52,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.328s (avg: 0.164s/image)
+2025-10-02 04:05:52,457 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:05:52,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:52,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:52,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:53,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:05:53,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:05:53,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:53,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:53,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:53,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:53,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:05:53,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:05:53,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:54,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:54,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:54,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:54,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:05:54,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:05:54,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:57,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:05:57,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:05:58,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:05:58,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:05:58,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:05:58,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:05:58,255 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:05:58,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:05:58,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:05:58,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s
+2025-10-02 04:05:58,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image)
+2025-10-02 04:05:58,557 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:06:01,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:01,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:01,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:02,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:06:02,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:06:02,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:03,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:03,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:03,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:03,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:06:03,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:06:03,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:03,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:03,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:03,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:03,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:06:03,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:06:03,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:06,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:06,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:06,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:06,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:06:06,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:06:06,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:06,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:06,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:06,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:07,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 04:06:07,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 04:06:07,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:07,727 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:06:07,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:06:07,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:06:08,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s
+2025-10-02 04:06:08,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image)
+2025-10-02 04:06:08,007 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:06:11,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:11,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:11,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:11,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:06:11,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:06:11,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:12,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:12,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:12,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:12,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:06:12,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:06:12,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:15,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:15,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:15,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:15,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:06:15,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:06:15,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:15,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:15,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:15,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:15,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:06:15,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:06:15,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:16,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:16,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:16,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:16,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 04:06:16,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 04:06:16,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:16,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:16,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:16,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:16,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:06:16,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:06:16,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:17,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:17,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:17,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:17,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:06:17,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:06:17,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:21,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:21,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:21,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:21,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:06:21,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:06:21,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:22,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:22,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:22,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:22,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:06:22,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:06:22,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:25,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:25,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:25,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:25,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:06:25,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:06:25,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:25,732 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:06:25,752 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:06:25,840 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.946
+2025-10-02 04:06:25,840 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:06:25,842 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 04:06:25,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:25,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:25,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:26,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:06:26,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:06:26,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:26,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:26,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:26,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:27,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:06:27,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:06:27,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:27,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:27,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:27,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:27,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:06:27,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:06:27,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:29,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:29,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:29,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:29,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:06:29,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:06:29,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:30,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:30,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:30,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:31,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:06:31,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:06:31,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:32,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:32,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:32,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:32,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:06:32,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:06:32,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:32,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:32,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:33,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:33,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:06:33,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:06:33,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:33,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:33,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:33,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:33,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:06:33,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:06:33,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:34,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:34,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:34,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:34,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:06:34,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:06:34,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:35,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:35,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:35,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:35,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:06:35,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:06:35,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:35,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:35,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:35,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:36,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 04:06:36,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 04:06:36,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:36,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:36,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:36,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:36,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:06:36,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:06:36,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:37,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:37,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:37,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:37,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:06:37,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:06:37,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:39,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:39,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:39,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:39,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:06:39,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:06:39,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:42,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:42,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:42,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:42,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 04:06:42,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 04:06:42,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:43,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:06:43,729 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(774, 790, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:06:43,816 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.923
+2025-10-02 04:06:43,816 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:06:43,817 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 04:06:44,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:44,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:44,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:44,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:06:44,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:06:44,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:44,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:44,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:44,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:45,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:06:45,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:06:45,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:45,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:45,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:45,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:45,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:06:45,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:06:45,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:47,317 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:06:47,339 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:06:47,416 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.422
+2025-10-02 04:06:47,416 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:06:47,416 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:06:49,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:49,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:49,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:49,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:06:49,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:06:49,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:50,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:50,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:50,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:50,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:06:50,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:06:50,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:50,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:06:50,590 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(732, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:06:50,666 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.193
+2025-10-02 04:06:50,666 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:06:50,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:06:53,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:53,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:53,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:53,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:06:53,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:06:53,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:55,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:55,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:55,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:55,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:06:55,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:06:55,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:56,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:56,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:56,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:56,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:06:56,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:06:56,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:06:56,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:06:56,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:06:57,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:06:57,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:06:57,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:06:57,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:00,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:00,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:00,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:00,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:07:00,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:07:00,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:00,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:00,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:00,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:00,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:07:00,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:07:00,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:01,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:01,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:01,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:01,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:07:01,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:07:01,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:04,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:04,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:04,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:04,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:07:04,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:07:04,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:05,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:05,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:05,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:05,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:07:05,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:07:05,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:06,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:06,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:06,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:06,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:07:06,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:07:06,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:07,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:07,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:07,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:07,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:07:07,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:07:07,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:07,883 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:07:07,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:07:07,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:07:08,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.245s
+2025-10-02 04:07:08,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.245s (avg: 0.122s/image)
+2025-10-02 04:07:08,129 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:07:10,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:10,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:10,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:11,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:07:11,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:07:11,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:13,510 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:07:13,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:07:13,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:07:13,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 04:07:13,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image)
+2025-10-02 04:07:13,795 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:07:14,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:14,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:14,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:14,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:07:14,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:07:14,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:14,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:14,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:14,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:14,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:07:14,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:07:14,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:17,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:17,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:17,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:17,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:07:17,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:07:17,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:17,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:17,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:17,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:17,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s
+2025-10-02 04:07:17,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image)
+2025-10-02 04:07:17,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:18,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:18,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:18,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:18,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:07:18,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:07:18,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:19,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:19,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:19,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:19,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:07:19,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:07:19,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:22,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:22,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:22,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:22,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:07:22,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:07:22,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:22,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:22,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:22,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:22,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:07:22,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:07:22,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:22,967 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:07:22,988 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:07:23,079 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.878
+2025-10-02 04:07:23,079 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:07:23,080 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 04:07:24,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:24,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:24,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:24,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:07:24,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:07:24,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:25,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:25,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:25,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:25,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:07:25,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:07:25,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:26,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:26,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:26,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:26,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:07:26,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:07:26,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:27,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:27,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:27,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:28,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:07:28,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:07:28,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:29,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:29,444 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:29,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:29,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:07:29,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:07:29,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:32,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:32,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:32,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:32,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:07:32,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:07:32,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:33,809 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:07:33,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:07:33,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:07:34,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s
+2025-10-02 04:07:34,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image)
+2025-10-02 04:07:34,107 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:07:34,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:34,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:34,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:34,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:07:34,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:07:34,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:37,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:37,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:37,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:37,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:07:37,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:07:37,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:38,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:38,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:38,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:38,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:07:38,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:07:38,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:42,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:42,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:42,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:42,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:07:42,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:07:42,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:46,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:46,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:46,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:46,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:07:46,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:07:46,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:51,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:51,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:51,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:52,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:07:52,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:07:52,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:07:56,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:07:56,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:07:56,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:07:56,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:07:56,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:07:56,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:00,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:00,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:00,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:00,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:08:00,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:08:00,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:00,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:00,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:00,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:00,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:08:00,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:08:00,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:06,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:06,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:06,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:06,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:08:06,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:08:06,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:11,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:11,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:11,872 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:11,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:08:11,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:08:11,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:15,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:15,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:16,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:16,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:08:16,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:08:16,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:16,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:16,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:16,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:16,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:08:16,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:08:16,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:17,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:17,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:17,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:17,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:08:17,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:08:17,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:23,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:23,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:23,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:23,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:08:23,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:08:23,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:24,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:24,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:24,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:24,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:08:24,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:08:24,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:24,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:24,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:24,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:25,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:08:25,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:08:25,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:28,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:28,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:28,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:28,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:08:28,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:08:28,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:31,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:31,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:31,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:31,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:08:31,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:08:31,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:33,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:33,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:33,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:33,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:08:33,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:08:33,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:33,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:33,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:33,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:33,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:08:33,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:08:33,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:34,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:34,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:35,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:35,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:08:35,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:08:35,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:37,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:37,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:37,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:37,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:08:37,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:08:37,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:39,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:39,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:39,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:39,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:08:39,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:08:39,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:40,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:40,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:40,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:41,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:08:41,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:08:41,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:41,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:41,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:41,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:41,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:08:41,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:08:41,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:41,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:41,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:41,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:42,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:08:42,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:08:42,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:44,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:44,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:44,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:44,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:08:44,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:08:44,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:46,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:46,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:46,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:46,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:08:46,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:08:46,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:48,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:48,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:48,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:48,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:08:48,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:08:48,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:50,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:50,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:50,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:50,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:08:50,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:08:50,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:52,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:52,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:52,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:52,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:08:52,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:08:52,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:54,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:54,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:54,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:54,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:08:54,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:08:54,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:56,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:56,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:56,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:56,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:08:56,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:08:56,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:08:57,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:08:57,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:08:57,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:08:57,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:08:57,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:08:57,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:00,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:00,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:00,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:00,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:09:00,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:09:00,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:01,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:01,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:01,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:01,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:09:01,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:09:01,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:03,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:03,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:03,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:03,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:09:03,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:09:03,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:04,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:04,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:04,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:04,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:09:04,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:09:04,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:06,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:06,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:06,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:06,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:09:06,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:09:06,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:06,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:06,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:06,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:07,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:09:07,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:09:07,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:08,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:08,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:08,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:08,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:09:08,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:09:08,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:09,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:09,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:09,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:09,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:09:09,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:09:09,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:12,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:12,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:12,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:12,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:09:12,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:09:12,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:13,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:13,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:13,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:13,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:09:13,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:09:13,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:14,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:14,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:14,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:14,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:09:14,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:09:14,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:15,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:15,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:15,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:16,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:09:16,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:09:16,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:21,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:21,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:21,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:21,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:09:21,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:09:21,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:22,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:22,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:22,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:22,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:09:22,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:09:22,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:23,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:23,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:23,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:23,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:09:23,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:09:23,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:24,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:24,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:24,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:24,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:09:24,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:09:24,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:24,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:24,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:25,025 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.798
+2025-10-02 04:09:25,025 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:09:25,027 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 04:09:30,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:30,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:30,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:30,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:09:30,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:09:30,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:31,759 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:31,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:31,872 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.291
+2025-10-02 04:09:31,873 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:09:31,873 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 04:09:32,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:32,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:32,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:32,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:09:32,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:09:32,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:33,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:33,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:33,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:33,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:09:33,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:09:33,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:35,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:35,023 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:35,097 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.710
+2025-10-02 04:09:35,097 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:09:35,097 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:09:35,465 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:35,493 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:35,577 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.546
+2025-10-02 04:09:35,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:09:35,578 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:09:36,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:36,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:36,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:36,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:09:36,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:09:36,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:38,664 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:38,693 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:38,782 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.102
+2025-10-02 04:09:38,782 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:09:38,782 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:09:39,002 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:39,034 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:39,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.558
+2025-10-02 04:09:39,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 04:09:39,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:09:40,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:40,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:40,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:40,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:09:40,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:09:40,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:41,205 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:41,228 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:41,315 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.435
+2025-10-02 04:09:41,315 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:09:41,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 04:09:42,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:42,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:42,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:42,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:09:42,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:09:42,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:42,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:42,410 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:42,486 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.321
+2025-10-02 04:09:42,486 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:09:42,487 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:09:42,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:42,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:42,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:43,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:09:43,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:09:43,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:45,019 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:45,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:45,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=167.028
+2025-10-02 04:09:45,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:09:45,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:09:46,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:46,365 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:46,446 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.348
+2025-10-02 04:09:46,447 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:09:46,448 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:09:46,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:46,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:46,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:47,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:09:47,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:09:47,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:49,364 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:49,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:49,476 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.565
+2025-10-02 04:09:49,477 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:09:49,477 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:09:49,640 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:49,665 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:49,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.719
+2025-10-02 04:09:49,747 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 04:09:49,747 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 04:09:50,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:50,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:50,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:50,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:09:50,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:09:50,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:50,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:50,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:50,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:50,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:09:50,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:09:50,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:52,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:52,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:52,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:52,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:09:52,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:09:52,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:53,063 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:09:53,091 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:09:53,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.871
+2025-10-02 04:09:53,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:09:53,179 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:09:57,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:57,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:57,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:57,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:09:57,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:09:57,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:58,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:58,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:58,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:58,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:09:58,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:09:58,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:58,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:58,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:58,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:58,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:09:58,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:09:58,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:09:58,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:09:58,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:09:58,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:09:59,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:09:59,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:09:59,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:00,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:00,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:00,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:00,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:10:00,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:10:00,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:01,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:01,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:01,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:01,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:10:01,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:10:01,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:04,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:04,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:04,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:04,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:10:04,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:10:04,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:06,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:06,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:06,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:06,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:10:06,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:10:06,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:10,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:10,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:10,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:10,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:10:10,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:10:10,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:13,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:13,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:13,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:13,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:10:13,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:10:13,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:16,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:16,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:16,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:17,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s
+2025-10-02 04:10:17,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image)
+2025-10-02 04:10:17,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:19,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:19,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:19,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:20,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:10:20,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:10:20,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:22,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:22,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:22,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:22,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:10:22,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:10:22,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:23,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:23,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:23,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:23,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:10:23,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:10:23,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:24,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:24,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:24,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:24,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:10:24,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:10:24,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:24,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:24,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:24,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:24,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:10:24,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:10:24,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:25,608 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:10:25,634 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:10:25,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.612
+2025-10-02 04:10:25,721 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:10:25,723 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 04:10:25,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:25,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:25,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:25,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:10:25,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:10:25,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:26,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:26,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:26,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:26,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:10:26,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:10:26,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:29,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:29,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:29,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:29,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:10:29,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:10:29,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:30,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:30,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:31,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:31,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:10:31,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:10:31,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:31,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:31,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:31,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:31,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:10:31,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:10:31,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:31,836 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:10:31,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:10:31,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:10:32,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s
+2025-10-02 04:10:32,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image)
+2025-10-02 04:10:32,124 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:10:32,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:32,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:32,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:32,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:10:32,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:10:32,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:35,129 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs.
+2025-10-02 04:10:35,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB
+2025-10-02 04:10:35,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행
+2025-10-02 04:10:35,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.437s
+2025-10-02 04:10:35,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.437s (avg: 0.146s/image)
+2025-10-02 04:10:35,567 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs.
+2025-10-02 04:10:35,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:35,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:35,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:35,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:10:35,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:10:35,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:38,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:38,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:38,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:38,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:10:38,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:10:38,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:40,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:40,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:40,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:40,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:10:40,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:10:40,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:40,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:40,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:40,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:40,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:10:40,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:10:40,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:40,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:40,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:40,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:41,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:10:41,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:10:41,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:41,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:41,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:41,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:41,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:10:41,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:10:41,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:42,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:42,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:42,166 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:42,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:10:42,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:10:42,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:43,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:43,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:43,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:43,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:10:43,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:10:43,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:44,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:44,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:44,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:44,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:10:44,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:10:44,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:44,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:44,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:44,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:44,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:10:44,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:10:44,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:44,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:44,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:44,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:45,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:10:45,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:10:45,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:45,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:45,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:45,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:45,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:10:45,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:10:45,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:47,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:47,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:47,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:47,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:10:47,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:10:47,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:48,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:48,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:48,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:48,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s
+2025-10-02 04:10:48,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image)
+2025-10-02 04:10:48,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:49,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:49,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:49,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:49,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:10:49,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:10:49,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:49,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:49,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:49,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:49,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:10:49,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:10:49,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:50,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:50,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:50,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:50,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:10:50,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:10:50,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:50,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:50,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:50,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:50,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:10:50,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:10:50,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:51,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:51,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:51,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:51,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:10:51,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:10:51,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:52,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:52,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:52,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:52,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:10:52,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:10:52,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:53,097 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:10:53,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:10:53,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:10:53,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s
+2025-10-02 04:10:53,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image)
+2025-10-02 04:10:53,377 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:10:53,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:53,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:53,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:53,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:10:53,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:10:53,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:54,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:54,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:54,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:54,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:10:54,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:10:54,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:54,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:54,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:54,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:55,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:10:55,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:10:55,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:55,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:55,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:55,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:55,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:10:55,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:10:55,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:56,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:56,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:56,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:57,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:10:57,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:10:57,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:57,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:57,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:57,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:57,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:10:57,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:10:57,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:57,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:57,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:57,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:58,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:10:58,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:10:58,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:58,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:58,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:58,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:58,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:10:58,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:10:58,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:10:59,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:10:59,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:10:59,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:10:59,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:10:59,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:10:59,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:01,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:01,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:01,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:01,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:11:01,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:11:01,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:01,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:01,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:01,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:01,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:11:01,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:11:01,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:02,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:02,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:02,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:02,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:11:02,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:11:02,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:03,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:03,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:03,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:03,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:11:03,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:11:03,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:04,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:04,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:04,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:04,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:11:04,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:11:04,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:04,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:04,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:04,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:05,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:11:05,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:11:05,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:05,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:05,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:05,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:05,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s
+2025-10-02 04:11:05,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image)
+2025-10-02 04:11:05,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:05,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:05,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:05,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:05,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:11:05,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:11:05,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:06,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:06,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:06,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:06,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:11:06,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:11:06,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:09,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:09,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:09,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:09,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:11:09,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:11:09,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:09,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:09,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:09,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:09,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:11:09,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:11:09,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:09,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:09,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:10,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:10,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:11:10,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:11:10,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:10,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:10,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:10,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:10,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:11:10,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:11:10,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:10,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:10,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:11,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:11,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:11:11,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:11:11,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:11,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:11,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:11,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:11,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:11:11,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:11:11,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:14,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:14,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:14,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:14,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:11:14,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:11:14,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:15,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:15,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:15,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:15,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:11:15,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:11:15,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:15,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:15,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:15,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:15,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:11:15,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:11:15,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:15,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:15,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:15,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:15,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:11:15,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:11:15,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:16,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:16,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:16,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:16,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:11:16,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:11:16,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:18,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:18,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:18,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:18,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s
+2025-10-02 04:11:18,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image)
+2025-10-02 04:11:18,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:18,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:18,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:18,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:18,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:11:18,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:11:18,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:19,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:19,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:19,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:19,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:11:19,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:11:19,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:19,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:19,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:19,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:20,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:11:20,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:11:20,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:20,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:20,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:20,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:20,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:11:20,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:11:20,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:22,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:22,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:22,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:22,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:11:22,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:11:22,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:24,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:24,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:24,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:24,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 04:11:24,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 04:11:24,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:24,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:24,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:24,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:24,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:11:24,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:11:24,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:27,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:27,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:27,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:27,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:11:27,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:11:27,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:27,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:27,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:27,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:27,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:11:27,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:11:27,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:28,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:28,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:28,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:28,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:11:28,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:11:28,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:28,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:28,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:28,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:28,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:11:28,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:11:28,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:30,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:30,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:30,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:30,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:11:30,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:11:30,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:36,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:36,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:37,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:37,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:11:37,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:11:37,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:37,928 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:11:37,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:11:37,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:11:38,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s
+2025-10-02 04:11:38,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.154s/image)
+2025-10-02 04:11:38,238 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:11:38,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:38,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:38,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:38,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:11:38,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:11:38,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:39,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:39,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:39,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:39,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:11:39,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:11:39,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:42,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:42,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:42,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:42,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:11:42,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:11:42,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:42,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:42,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:42,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:42,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:11:42,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:11:42,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:44,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:44,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:44,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:44,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:11:44,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:11:44,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:45,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:45,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:45,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:45,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 04:11:45,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 04:11:45,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:46,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:46,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:46,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:46,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:11:46,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:11:46,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:47,545 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:11:47,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:11:47,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:11:47,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s
+2025-10-02 04:11:47,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image)
+2025-10-02 04:11:47,833 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:11:50,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:50,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:50,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:50,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:11:50,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:11:50,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:51,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:51,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:52,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:52,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:11:52,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:11:52,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:54,108 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:11:54,135 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:11:54,212 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.007
+2025-10-02 04:11:54,212 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:11:54,213 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:11:54,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:54,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:54,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:54,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 04:11:54,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 04:11:54,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:56,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:56,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:56,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:57,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:11:57,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:11:57,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:57,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:57,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:57,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:57,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:11:57,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:11:57,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:11:57,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:11:57,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:11:57,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:11:58,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:11:58,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:11:58,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:00,454 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:12:00,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:12:00,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:12:00,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s
+2025-10-02 04:12:00,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image)
+2025-10-02 04:12:00,750 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:12:00,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:00,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:00,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:01,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:12:01,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:12:01,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:01,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:01,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:01,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:02,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:12:02,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:12:02,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:05,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:05,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:05,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:05,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 04:12:05,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 04:12:05,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:06,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:06,045 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:06,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:06,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:12:06,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:12:06,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:06,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:06,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:06,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:06,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:12:06,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:12:06,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:06,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:06,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:06,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:06,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:12:06,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:12:06,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:07,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:07,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:07,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:07,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:12:07,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:12:07,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:09,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:09,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:09,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:09,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:12:09,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:12:09,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:13,259 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:12:13,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:12:13,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:12:13,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s
+2025-10-02 04:12:13,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image)
+2025-10-02 04:12:13,540 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:12:13,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:13,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:13,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:13,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:12:13,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:12:13,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:14,200 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:12:14,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:12:14,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:12:14,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s
+2025-10-02 04:12:14,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image)
+2025-10-02 04:12:14,473 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:12:18,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:18,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:18,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:18,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:12:18,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:12:18,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:18,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:18,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:18,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:18,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:12:18,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:12:18,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:19,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:19,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:19,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:19,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:12:19,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:12:19,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:20,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:20,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:20,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:20,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:12:20,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:12:20,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:24,204 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:12:24,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:12:24,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:12:24,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s
+2025-10-02 04:12:24,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image)
+2025-10-02 04:12:24,484 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:12:26,102 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:12:26,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:12:26,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.711
+2025-10-02 04:12:26,210 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 04:12:26,210 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:12:26,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:26,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:26,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:26,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:12:26,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:12:26,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:29,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:29,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:29,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:30,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:12:30,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:12:30,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:30,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:12:30,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:12:30,127 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.259
+2025-10-02 04:12:30,128 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:12:30,128 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:12:32,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:32,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:32,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:32,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:12:32,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:12:32,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:32,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:32,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:32,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:32,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:12:32,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:12:32,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:33,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:33,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:33,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:33,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:12:33,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:12:33,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:36,151 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:12:36,191 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(767, 790, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:12:36,277 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.737
+2025-10-02 04:12:36,277 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:12:36,278 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:12:37,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:37,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:37,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:37,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 04:12:37,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 04:12:37,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:38,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:38,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:38,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:38,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:12:38,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:12:38,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:39,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:39,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:39,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:39,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:12:39,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:12:39,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:40,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:40,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:40,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:40,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:12:40,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:12:40,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:44,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:44,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:44,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:44,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:12:44,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:12:44,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:45,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:45,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:45,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:45,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:12:45,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:12:45,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:49,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:49,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:49,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:50,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:12:50,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:12:50,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:50,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:50,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:50,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:50,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:12:50,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:12:50,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:52,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:52,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:52,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:52,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:12:52,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:12:52,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:52,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:52,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:52,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:53,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:12:53,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:12:53,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:56,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:56,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:56,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:56,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:12:56,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:12:56,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:57,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:57,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:57,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:58,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:12:58,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:12:58,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:59,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:59,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:59,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:59,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:12:59,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:12:59,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:12:59,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:12:59,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:12:59,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:12:59,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:12:59,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:12:59,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:01,119 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:13:01,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:13:01,225 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.031
+2025-10-02 04:13:01,226 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:13:01,226 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:13:02,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:02,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:02,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:02,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:13:02,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:13:02,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:04,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:04,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:04,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:04,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:13:04,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:13:04,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:05,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:05,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:05,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:05,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:13:05,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:13:05,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:06,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:06,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:06,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:06,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:13:06,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:13:06,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:07,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:07,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:07,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:07,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:13:07,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:13:07,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:11,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:11,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:12,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:12,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:13:12,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:13:12,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:12,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:12,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:12,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:12,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:13:12,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:13:12,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:12,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:12,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:12,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:12,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:13:12,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:13:12,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:13,762 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:13:13,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:13:13,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:13:14,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s
+2025-10-02 04:13:14,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image)
+2025-10-02 04:13:14,062 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:13:16,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:16,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:16,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:16,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:13:16,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:13:16,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:17,632 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:13:17,667 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:13:17,759 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.223
+2025-10-02 04:13:17,759 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 04:13:17,761 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:13:18,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:18,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:18,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:18,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:13:18,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:13:18,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:19,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:19,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:19,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:19,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:13:19,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:13:19,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:20,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:20,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:20,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:20,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:13:20,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:13:20,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:20,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:20,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:20,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:21,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:13:21,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:13:21,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:21,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:21,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:21,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:21,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:13:21,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:13:21,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:21,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:13:21,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:13:21,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.103
+2025-10-02 04:13:21,911 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s
+2025-10-02 04:13:21,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s
+2025-10-02 04:13:23,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:23,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:23,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:23,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:13:23,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:13:23,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:23,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:23,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:23,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:24,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:13:24,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:13:24,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:24,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:24,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:24,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:24,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:13:24,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:13:24,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:25,649 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:13:25,680 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:13:25,778 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.152
+2025-10-02 04:13:25,778 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s
+2025-10-02 04:13:25,780 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s
+2025-10-02 04:13:26,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:26,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:26,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:26,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:13:26,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:13:26,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:26,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:26,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:26,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:26,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:13:26,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:13:26,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:27,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:27,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:27,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:27,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:13:27,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:13:27,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:28,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:28,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:28,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:28,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:13:28,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:13:28,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:31,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:31,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:31,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:31,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:13:31,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:13:31,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:31,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:31,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:31,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:31,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:13:31,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:13:31,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:32,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:32,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:32,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:32,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:13:32,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:13:32,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:32,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:32,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:32,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:33,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:13:33,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:13:33,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:37,015 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:13:37,038 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:13:37,124 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.410
+2025-10-02 04:13:37,124 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:13:37,124 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:13:38,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:38,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:38,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:38,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:13:38,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:13:38,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:42,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:42,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:42,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:42,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:13:42,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:13:42,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:43,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:43,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:43,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:43,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:13:43,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:13:43,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:44,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:44,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:44,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:44,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:13:44,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:13:44,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:47,805 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:13:47,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:13:47,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:13:48,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s
+2025-10-02 04:13:48,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image)
+2025-10-02 04:13:48,101 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:13:49,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:49,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:49,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:50,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:13:50,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:13:50,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:52,701 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:13:52,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:13:52,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:13:52,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s
+2025-10-02 04:13:53,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image)
+2025-10-02 04:13:53,000 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:13:53,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:53,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:53,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:53,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:13:53,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:13:53,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:55,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:55,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:55,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:55,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:13:55,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:13:55,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:13:57,988 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:13:57,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:13:58,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:13:58,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:13:58,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:13:58,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:00,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:00,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:00,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:00,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:14:00,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:14:00,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:07,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:07,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:07,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:07,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:14:07,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:14:07,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:11,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:11,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:11,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:11,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 04:14:11,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 04:14:11,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:15,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:15,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:15,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:15,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:14:15,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:14:15,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:16,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:16,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:16,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:17,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:14:17,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:14:17,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:17,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:17,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:17,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:17,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:14:17,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:14:17,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:17,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:14:17,928 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(791, 791, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:14:18,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.455
+2025-10-02 04:14:18,015 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:14:18,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:14:21,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:21,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:21,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:21,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:14:21,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:14:21,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:24,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:24,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:24,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:24,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:14:24,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:14:24,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:26,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:26,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:26,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:26,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:14:26,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:14:26,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:26,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:26,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:26,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:26,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:14:26,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:14:26,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:27,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:27,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:27,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:27,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:14:27,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:14:27,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:27,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:27,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:27,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:28,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:14:28,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:14:28,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:29,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:29,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:29,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:29,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:14:29,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:14:29,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:30,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:30,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:30,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:30,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:14:30,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:14:30,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:30,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:30,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:30,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:31,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:14:31,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:14:31,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:31,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:31,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:31,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:31,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:14:31,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:14:31,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:33,006 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:14:33,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:14:33,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:14:33,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s
+2025-10-02 04:14:33,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image)
+2025-10-02 04:14:33,310 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:14:35,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:35,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:35,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:35,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:14:35,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:14:35,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:36,266 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:14:36,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:14:36,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:14:36,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s
+2025-10-02 04:14:36,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image)
+2025-10-02 04:14:36,576 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:14:37,547 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:14:37,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:14:37,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:14:37,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s
+2025-10-02 04:14:37,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image)
+2025-10-02 04:14:37,828 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:14:39,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:39,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:39,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:39,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:14:39,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:14:39,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:39,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:39,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:39,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:40,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:14:40,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:14:40,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:40,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:40,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:40,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:40,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:14:40,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:14:40,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:42,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:42,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:42,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:42,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:14:42,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:14:42,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:46,427 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:14:46,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:14:46,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:14:46,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s
+2025-10-02 04:14:46,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image)
+2025-10-02 04:14:46,758 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:14:48,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:48,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:48,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:48,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:14:48,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:14:48,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:49,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:49,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:49,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:49,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:14:49,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:14:49,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:51,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:51,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:51,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:51,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:14:51,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:14:51,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:51,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:51,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:52,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:52,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:14:52,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:14:52,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:53,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:14:53,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:14:53,255 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.202
+2025-10-02 04:14:53,256 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:14:53,256 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:14:53,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:53,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:53,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:53,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:14:53,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:14:53,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:54,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:54,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:54,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:55,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:14:55,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:14:55,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:55,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:55,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:55,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:55,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:14:55,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:14:55,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:56,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:14:56,818 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:14:56,897 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.604
+2025-10-02 04:14:56,898 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:14:56,898 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 04:14:57,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:57,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:57,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:57,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:14:57,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:14:57,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:57,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:57,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:57,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:57,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:14:57,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:14:57,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:58,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:58,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:58,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:58,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:14:58,544 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:14:58,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:58,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:58,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:59,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:59,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:14:59,148 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:14:59,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:59,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:59,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:59,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:59,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:14:59,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:14:59,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:14:59,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:14:59,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:14:59,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:14:59,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:14:59,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:14:59,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:00,351 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:15:00,380 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:15:00,459 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.629
+2025-10-02 04:15:00,460 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:15:00,460 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:15:03,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:03,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:03,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:03,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 04:15:03,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 04:15:03,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:04,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:04,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:04,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:04,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:15:04,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:15:04,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:04,940 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:04,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:04,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:05,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:15:05,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:15:05,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:06,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:06,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:06,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:06,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:15:06,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:15:06,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:07,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:07,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:07,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:07,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:15:07,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:15:07,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:08,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:08,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:08,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:08,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:15:08,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:15:08,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:09,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:09,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:10,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:10,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:15:10,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:15:10,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:10,764 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:15:10,786 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:15:10,861 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.574
+2025-10-02 04:15:10,861 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:15:10,862 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:15:11,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:11,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:11,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:11,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:15:11,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:15:11,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:11,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:11,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:11,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:11,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:15:11,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:15:11,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:13,270 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:15:13,294 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:15:13,367 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.670
+2025-10-02 04:15:13,368 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:15:13,368 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:15:14,317 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:15:14,336 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:15:14,412 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.138
+2025-10-02 04:15:14,412 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:15:14,412 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:15:14,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:14,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:14,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:14,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:15:14,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:15:14,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:16,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:16,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:16,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:16,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:15:16,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:15:16,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:16,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:16,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:16,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:16,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:15:16,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:15:16,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:17,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:17,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:17,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:17,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:15:17,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:15:17,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:18,079 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:15:18,099 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:15:18,174 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.302
+2025-10-02 04:15:18,174 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:15:18,174 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:15:21,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:21,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:21,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:21,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:15:21,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:15:21,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:22,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:22,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:22,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:22,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:15:22,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:15:22,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:22,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:22,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:22,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:22,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:15:22,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:15:22,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:25,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:25,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:25,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:25,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:15:25,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:15:25,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:25,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:25,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:26,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:26,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:15:26,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:15:26,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:26,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:26,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:26,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:26,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:15:26,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:15:26,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:26,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:26,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:26,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:27,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:15:27,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:15:27,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:28,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:28,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:28,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:28,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:15:28,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:15:28,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:31,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:31,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:31,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:31,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:15:31,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:15:31,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:32,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:32,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:32,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:32,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:15:32,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:15:32,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:33,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:33,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:33,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:33,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:15:33,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:15:33,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:34,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:34,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:34,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:35,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:15:35,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:15:35,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:37,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:37,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:37,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:37,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:15:37,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:15:37,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:39,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:39,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:39,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:39,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:15:39,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:15:39,300 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:40,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:40,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:40,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:40,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:15:40,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:15:40,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:43,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:43,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:43,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:43,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:15:43,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:15:43,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:46,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:46,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:47,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:47,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:15:47,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:15:47,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:47,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:47,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:47,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:47,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:15:47,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:15:47,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:47,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:47,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:47,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:48,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:15:48,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:15:48,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:48,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:48,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:48,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:48,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:15:48,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:15:48,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:52,411 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:15:52,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:15:52,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:15:52,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s
+2025-10-02 04:15:52,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image)
+2025-10-02 04:15:52,714 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:15:53,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:53,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:53,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:53,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:15:53,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:15:53,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:55,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:55,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:55,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:56,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:15:56,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:15:56,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:56,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:56,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:56,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:56,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:15:56,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:15:56,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:57,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:57,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:57,579 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:57,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:15:57,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:15:57,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:15:57,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:15:57,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:15:57,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:15:58,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:15:58,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:15:58,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:00,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:00,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:00,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:00,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:16:00,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:16:00,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:01,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:01,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:01,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:01,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:16:01,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:16:01,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:02,662 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:16:02,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:16:02,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:16:02,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s
+2025-10-02 04:16:02,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image)
+2025-10-02 04:16:02,949 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:16:03,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:03,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:03,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:03,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:16:03,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:16:03,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:03,900 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:16:03,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:16:03,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:16:04,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 04:16:04,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image)
+2025-10-02 04:16:04,184 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:16:04,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:04,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:04,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:04,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:16:04,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:16:04,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:05,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:05,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:05,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:05,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:16:05,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:16:05,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:08,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:08,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:08,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:08,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:16:08,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:16:08,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:09,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:09,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:09,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:09,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:16:09,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:16:09,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:09,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:09,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:09,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:09,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:16:09,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:16:09,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:09,827 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:16:09,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:16:09,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:16:10,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s
+2025-10-02 04:16:10,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image)
+2025-10-02 04:16:10,101 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:16:10,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:10,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:10,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:10,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:16:10,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:16:10,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:13,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:13,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:13,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:13,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:16:13,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:16:13,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:14,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:14,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:14,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:14,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:16:14,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:16:14,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:15,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:15,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:15,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:15,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:16:15,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:16:15,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:15,570 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:16:15,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:16:15,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:16:15,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s
+2025-10-02 04:16:15,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image)
+2025-10-02 04:16:15,862 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:16:16,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:16,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:16,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:16,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:16:16,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:16:16,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:18,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:18,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:18,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:18,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:16:18,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:16:18,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:19,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:19,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:19,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:19,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:16:19,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:16:19,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:20,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:20,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:20,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:20,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:16:20,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:16:20,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:21,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:21,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:21,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:21,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:16:21,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:16:21,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:23,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:23,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:23,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:23,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:16:23,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:16:23,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:24,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:24,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:24,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:24,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:16:24,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:16:24,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:25,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:25,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:25,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:26,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:16:26,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:16:26,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:26,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:26,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:26,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:26,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:16:26,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:16:26,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:26,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:26,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:26,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:26,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:16:26,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:16:26,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:28,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:28,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:28,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:28,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:16:28,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:16:28,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:29,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:29,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:29,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:29,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:16:29,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:16:29,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:29,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:16:29,766 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:16:29,857 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.076
+2025-10-02 04:16:29,857 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:16:29,857 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:16:30,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:30,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:30,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:30,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:16:30,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:16:30,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:30,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:16:30,622 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:16:30,701 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.736
+2025-10-02 04:16:30,701 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 04:16:30,703 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:16:31,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:31,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:31,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:31,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:16:31,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:16:31,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:32,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:32,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:32,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:32,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:16:32,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:16:32,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:32,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:32,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:32,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:32,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:16:32,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:16:32,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:33,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:33,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:33,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:34,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:16:34,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:16:34,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:34,536 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:16:34,559 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:16:34,651 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.243
+2025-10-02 04:16:34,651 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 04:16:34,653 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:16:36,023 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:16:36,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:16:36,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:16:36,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s
+2025-10-02 04:16:36,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image)
+2025-10-02 04:16:36,332 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:16:36,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:36,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:36,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:36,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:16:36,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:16:36,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:38,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:39,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:39,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:39,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:16:39,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:16:39,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:39,262 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:16:39,271 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:16:39,338 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.197
+2025-10-02 04:16:39,338 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s
+2025-10-02 04:16:39,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s
+2025-10-02 04:16:39,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:39,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:39,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:39,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:16:39,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:16:39,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:40,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:40,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:41,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:41,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:16:41,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:16:41,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:42,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:42,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:42,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:42,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:16:42,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:16:42,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:42,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:42,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:42,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:43,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:16:43,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:16:43,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:44,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:44,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:44,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:44,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:16:44,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:16:44,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:46,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:46,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:46,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:46,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:16:46,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:16:46,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:47,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:47,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:47,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:47,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:16:47,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:16:47,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:47,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:47,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:47,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:47,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:16:47,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:16:47,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:49,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:49,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:49,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:49,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:16:49,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:16:49,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:52,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:52,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:52,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:52,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:16:52,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:16:52,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:16:58,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:16:58,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:16:58,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:16:58,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 04:16:58,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 04:16:58,608 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:01,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:01,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:01,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:02,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:17:02,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:17:02,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:04,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:04,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:04,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:04,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:17:04,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:17:04,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:07,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:07,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:07,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:07,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s
+2025-10-02 04:17:07,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image)
+2025-10-02 04:17:07,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:10,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:17:10,423 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:17:10,508 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.365
+2025-10-02 04:17:10,508 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:17:10,510 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 04:17:13,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:17:13,927 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:17:14,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.060
+2025-10-02 04:17:14,019 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 04:17:14,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:17:14,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:14,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:14,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:14,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:17:14,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:17:14,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:18,233 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:17:18,269 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:17:18,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.196
+2025-10-02 04:17:18,364 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s
+2025-10-02 04:17:18,366 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s
+2025-10-02 04:17:20,272 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:17:20,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:17:20,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:17:20,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.346s
+2025-10-02 04:17:20,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.346s (avg: 0.173s/image)
+2025-10-02 04:17:20,619 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:17:20,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:20,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:20,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:21,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:17:21,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:17:21,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:25,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:25,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:25,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:26,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:17:26,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:17:26,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:27,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:27,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:27,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:27,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 04:17:27,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 04:17:27,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:27,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:27,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:27,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:28,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:17:28,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:17:28,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:28,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:28,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:28,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:28,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:17:28,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:17:28,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:32,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:32,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:32,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:33,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:17:33,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:17:33,022 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:33,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:33,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:33,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:33,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:17:33,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:17:33,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:34,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:34,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:34,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:34,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:17:34,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:17:34,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:37,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:37,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:37,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:38,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:17:38,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:17:38,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:38,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:38,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:38,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:38,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:17:38,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:17:38,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:41,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:41,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:41,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:42,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:17:42,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:17:42,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:42,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:42,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:43,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:43,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:17:43,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:17:43,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:43,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:43,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:43,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:43,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:17:43,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:17:43,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:44,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:44,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:44,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:45,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:17:45,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:17:45,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:45,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:17:45,409 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:17:45,484 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.299
+2025-10-02 04:17:45,484 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:17:45,484 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:17:45,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:45,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:45,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:45,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:17:45,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:17:45,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:49,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:49,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:50,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:50,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:17:50,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:17:50,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:50,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:50,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:50,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:50,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:17:50,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:17:50,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:50,727 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:17:50,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:17:50,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:17:51,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s
+2025-10-02 04:17:51,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image)
+2025-10-02 04:17:51,017 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:17:56,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:56,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:56,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:56,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:17:56,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:17:56,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:56,820 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:17:56,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:17:56,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:17:57,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s
+2025-10-02 04:17:57,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image)
+2025-10-02 04:17:57,121 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:17:57,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:57,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:57,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:58,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:17:58,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:17:58,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:17:59,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:17:59,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:17:59,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:17:59,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:17:59,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:17:59,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:02,718 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:18:02,740 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:18:02,825 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.693
+2025-10-02 04:18:02,825 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:18:02,825 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:18:03,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:03,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:03,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:03,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:18:03,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:18:03,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:03,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:03,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:03,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:04,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:18:04,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:18:04,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:06,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:06,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:06,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:06,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:18:06,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:18:06,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:07,235 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:18:07,256 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:18:07,335 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=174.116
+2025-10-02 04:18:07,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:18:07,336 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:18:08,437 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:08,438 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:08,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:08,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:18:08,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:18:08,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:08,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:08,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:08,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:08,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:18:08,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:18:08,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:09,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:09,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:09,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:09,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:18:09,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:18:09,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:11,866 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:18:11,901 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:18:11,984 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.401
+2025-10-02 04:18:11,985 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 04:18:11,985 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:18:12,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:12,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:12,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:12,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:18:12,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:18:12,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:16,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:16,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:16,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:16,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:18:16,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:18:16,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:16,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:16,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:16,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:16,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:18:16,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:18:16,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:17,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:17,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:17,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:17,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:18:17,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:18:17,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:17,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:17,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:17,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:17,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:18:17,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:18:17,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:18,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:18,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:18,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:18,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:18:18,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:18:18,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:19,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:19,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:19,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:19,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:18:19,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:18:19,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:21,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:21,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:21,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:21,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:18:21,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:18:21,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:23,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:23,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:23,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:23,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:18:23,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:18:23,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:23,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:23,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:23,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:23,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:18:23,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:18:23,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:24,361 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:18:24,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:18:24,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.934
+2025-10-02 04:18:24,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:18:24,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:18:24,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:24,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:25,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:25,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:18:25,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:18:25,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:25,274 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:18:25,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:18:25,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:18:25,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s
+2025-10-02 04:18:25,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image)
+2025-10-02 04:18:25,555 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:18:26,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:26,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:26,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:26,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:18:26,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:18:26,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:27,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:27,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:27,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:27,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:18:27,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:18:27,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:31,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:31,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:31,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:31,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:18:31,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:18:31,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:31,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:31,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:31,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:32,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:18:32,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:18:32,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:33,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:33,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:33,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:33,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:18:33,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:18:33,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:33,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:33,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:33,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:33,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:18:33,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:18:33,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:36,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:36,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:36,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:36,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:18:36,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:18:36,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:37,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:37,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:37,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:37,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:18:37,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:18:37,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:38,419 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:18:38,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:18:38,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:18:38,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 04:18:38,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 04:18:38,702 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:18:39,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:39,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:39,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:40,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:18:40,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:18:40,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:40,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:40,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:41,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:41,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:18:41,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:18:41,131 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:43,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:43,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:43,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:43,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:18:43,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:18:43,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:44,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:44,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:44,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:44,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:18:44,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:18:44,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:45,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:45,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:45,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:46,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:18:46,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:18:46,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:47,617 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:18:47,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:18:47,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.666
+2025-10-02 04:18:47,721 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 04:18:47,721 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:18:51,726 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:18:51,758 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:18:51,837 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.545
+2025-10-02 04:18:51,838 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:18:51,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:18:53,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:53,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:53,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:53,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:18:53,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:18:53,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:54,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:54,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:54,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:54,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:18:54,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:18:54,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:55,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:18:55,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:18:55,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:18:55,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:18:55,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:18:55,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:18:56,226 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:18:56,251 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:18:56,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.262
+2025-10-02 04:18:56,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:18:56,336 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:19:00,013 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:19:00,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:19:00,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:19:00,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 04:19:00,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image)
+2025-10-02 04:19:00,298 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:19:00,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:00,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:00,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:00,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:19:00,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:19:00,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:06,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:06,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:06,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:06,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:19:06,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:19:06,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:07,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:07,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:07,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:07,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:19:07,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:19:07,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:08,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:08,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:08,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:08,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:19:08,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:19:08,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:08,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:08,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:08,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:08,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:19:08,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:19:08,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:09,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:09,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:09,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:09,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:19:09,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:19:09,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:11,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:11,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:11,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:11,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:19:11,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:19:11,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:14,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:14,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:14,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:14,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:19:14,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:19:14,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:15,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:15,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:15,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:15,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:19:15,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:19:15,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:17,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:17,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:17,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:18,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 04:19:18,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 04:19:18,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:18,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:18,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:18,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:18,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:19:18,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:19:18,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:21,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:21,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:21,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:21,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:19:21,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:19:21,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:26,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:26,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:26,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:26,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:19:26,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:19:26,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:27,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:27,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:27,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:27,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:19:27,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:19:27,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:27,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:27,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:27,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:27,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:19:27,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:19:27,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:31,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:19:31,267 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:19:31,357 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.890
+2025-10-02 04:19:31,357 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 04:19:31,358 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:19:32,346 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:19:32,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:19:32,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:19:32,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s
+2025-10-02 04:19:32,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image)
+2025-10-02 04:19:32,636 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:19:33,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:33,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:33,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:33,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:19:33,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:19:33,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:34,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:34,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:34,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:34,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:19:34,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:19:34,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:35,584 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:19:35,624 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:19:35,710 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=132.372
+2025-10-02 04:19:35,711 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:19:35,711 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 04:19:38,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:38,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:38,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:38,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:19:38,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:19:38,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:38,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:38,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:38,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:38,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:19:38,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:19:38,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:39,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:19:39,730 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:19:39,807 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.916
+2025-10-02 04:19:39,807 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:19:39,808 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:19:40,174 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:19:40,195 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:19:40,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.037
+2025-10-02 04:19:40,272 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:19:40,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:19:41,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:41,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:41,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:41,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:19:41,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:19:41,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:43,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:43,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:43,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:43,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:19:43,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:19:43,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:44,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:19:44,531 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:19:44,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.519
+2025-10-02 04:19:44,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s
+2025-10-02 04:19:44,629 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s
+2025-10-02 04:19:45,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:45,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:45,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:45,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:19:45,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:19:45,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:48,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:48,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:48,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:48,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:19:48,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:19:48,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:48,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:48,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:48,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:48,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:19:48,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:19:48,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:50,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:50,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:50,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:50,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:19:50,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:19:50,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:51,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:51,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:51,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:51,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:19:51,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:19:51,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:52,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:52,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:52,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:52,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:19:52,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:19:52,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:53,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:53,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:53,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:53,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:19:53,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:19:53,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:54,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:54,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:54,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:54,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:19:54,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:19:54,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:56,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:56,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:56,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:56,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:19:56,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:19:56,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:57,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:57,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:57,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:57,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:19:57,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:19:57,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:19:59,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:19:59,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:19:59,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:19:59,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:19:59,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:19:59,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:02,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:02,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:02,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:02,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:20:02,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:20:02,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:04,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:04,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:04,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:04,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:20:04,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:20:04,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:04,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:04,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:04,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:04,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:20:04,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:20:04,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:05,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:05,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:05,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:05,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s
+2025-10-02 04:20:05,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image)
+2025-10-02 04:20:05,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:05,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:05,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:05,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:05,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:20:05,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:20:05,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:05,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:05,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:06,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:06,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:20:06,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:20:06,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:09,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:09,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:10,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:10,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:20:10,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:20:10,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:11,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:11,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:11,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:11,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:20:11,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:20:11,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:11,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:11,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:11,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:11,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:20:11,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:20:11,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:15,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:15,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:15,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:15,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:20:15,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:20:15,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:16,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:16,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:16,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:16,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:20:16,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:20:16,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:16,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:16,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:16,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:17,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:20:17,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:20:17,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:17,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:17,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:17,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:17,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 04:20:17,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 04:20:17,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:18,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:18,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:18,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:18,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:20:18,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:20:18,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:20,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:20,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:20,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:20,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:20:20,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:20:20,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:20,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:20,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:20,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:20,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:20:20,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:20:20,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:20,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:20,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:21,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:21,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:20:21,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:20:21,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:22,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:22,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:22,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:22,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:20:22,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:20:22,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:22,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:20:22,966 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:20:23,055 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.275
+2025-10-02 04:20:23,056 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:20:23,057 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:20:25,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:25,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:25,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:25,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:20:25,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:20:25,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:25,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:25,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:25,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:26,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 04:20:26,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 04:20:26,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:26,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:26,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:26,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:26,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:20:26,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:20:26,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:28,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:28,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:28,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:28,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:20:28,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:20:28,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:28,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:28,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:28,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:28,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:20:28,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:20:28,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:34,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:34,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:34,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:34,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:20:34,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:20:34,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:34,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:34,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:34,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:34,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:20:34,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:20:34,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:35,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:35,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:35,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:35,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:20:35,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:20:35,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:39,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:39,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:39,438 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:39,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s
+2025-10-02 04:20:39,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image)
+2025-10-02 04:20:39,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:40,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:40,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:40,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:40,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:20:40,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:20:40,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:41,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:41,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:41,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:41,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 04:20:41,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 04:20:41,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:43,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:43,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:43,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:43,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:20:43,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:20:43,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:46,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:46,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:46,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:46,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:20:46,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:20:46,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:46,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:46,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:46,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:46,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s
+2025-10-02 04:20:46,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image)
+2025-10-02 04:20:46,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:48,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:48,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:48,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:49,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s
+2025-10-02 04:20:49,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image)
+2025-10-02 04:20:49,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:50,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:50,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:50,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:50,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:20:50,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:20:50,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:52,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:52,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:52,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:52,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:20:52,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:20:52,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:53,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:53,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:53,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:53,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 04:20:53,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 04:20:53,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:57,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:57,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:57,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:57,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:20:57,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:20:57,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:58,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:20:58,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:20:58,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:20:58,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:20:58,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:20:58,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:20:59,702 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:20:59,727 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:20:59,808 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.156
+2025-10-02 04:20:59,808 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:20:59,809 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:21:00,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:00,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:00,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:00,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 04:21:00,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 04:21:00,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:03,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:03,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:03,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:03,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:21:03,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:21:03,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:03,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:03,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:03,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:04,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:21:04,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:21:04,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:04,340 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:21:04,364 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:21:04,439 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.275
+2025-10-02 04:21:04,440 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:21:04,440 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:21:06,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:06,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:06,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:06,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:21:06,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:21:06,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:07,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:07,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:07,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:07,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 04:21:07,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 04:21:07,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:08,308 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:21:08,342 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:21:08,420 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.445
+2025-10-02 04:21:08,421 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:21:08,421 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 04:21:08,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:08,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:08,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:08,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:21:08,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:21:08,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:10,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:10,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:10,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:10,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:21:10,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:21:10,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:14,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:14,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:14,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:14,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 04:21:14,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 04:21:14,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:16,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:16,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:16,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:17,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:21:17,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:21:17,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:22,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:22,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:22,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:22,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s
+2025-10-02 04:21:22,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image)
+2025-10-02 04:21:22,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:22,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:22,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:22,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:23,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s
+2025-10-02 04:21:23,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image)
+2025-10-02 04:21:23,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:23,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:23,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:23,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:23,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:21:23,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:21:23,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:26,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:26,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:26,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:26,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:21:26,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:21:26,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:26,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:26,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:26,882 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:27,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:21:27,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:21:27,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:28,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:28,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:28,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:28,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 04:21:28,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 04:21:28,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:29,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:29,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:29,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:29,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:21:29,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:21:29,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:35,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:35,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:35,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:35,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:21:35,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:21:35,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:36,219 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:21:36,243 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:21:36,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.912
+2025-10-02 04:21:36,320 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:21:36,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:21:36,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:36,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:36,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:36,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:21:36,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:21:36,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:39,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:39,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:39,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:40,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:21:40,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:21:40,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:40,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:40,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:40,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:40,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 04:21:40,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 04:21:40,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:40,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:40,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:40,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:40,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:21:40,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:21:40,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:41,261 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:21:41,287 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:21:41,366 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.750
+2025-10-02 04:21:41,367 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:21:41,367 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:21:41,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:41,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:41,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:42,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:21:42,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:21:42,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:43,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:43,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:43,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:43,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:21:43,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:21:43,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:44,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:21:45,012 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:21:45,103 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.098
+2025-10-02 04:21:45,103 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:21:45,103 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:21:46,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:46,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:46,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:46,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:21:46,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:21:46,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:47,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:47,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:47,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:47,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:21:47,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:21:47,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:47,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:47,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:47,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:47,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:21:47,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:21:47,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:48,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:48,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:48,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:48,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 04:21:48,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 04:21:48,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:48,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:48,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:48,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:49,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:21:49,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:21:49,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:49,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:21:49,394 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:21:49,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.890
+2025-10-02 04:21:49,469 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:21:49,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:21:51,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:51,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:51,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:51,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:21:51,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:21:51,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:53,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:53,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:53,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:53,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:21:53,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:21:53,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:53,307 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:21:53,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:21:53,398 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.405
+2025-10-02 04:21:53,398 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:21:53,398 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:21:53,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:53,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:53,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:53,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:21:53,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:21:53,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:21:56,691 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:21:56,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:21:56,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:21:57,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s
+2025-10-02 04:21:57,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image)
+2025-10-02 04:21:57,016 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:21:57,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:21:57,363 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:21:57,437 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.683
+2025-10-02 04:21:57,438 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:21:57,438 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:21:57,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:21:57,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:21:57,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:21:57,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:21:57,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:21:57,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:03,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:03,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:03,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:03,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:22:03,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:22:03,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:05,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:05,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:05,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:05,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:22:05,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:22:05,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:05,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:05,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:05,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:05,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:22:05,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:22:05,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:06,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:06,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:06,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:06,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:22:06,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:22:06,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:09,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:09,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:09,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:09,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:22:09,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:22:09,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:10,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:10,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:10,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:10,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:22:10,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:22:10,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:11,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:11,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:11,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:11,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:22:11,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:22:11,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:14,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:14,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:14,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:14,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:22:14,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:22:14,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:15,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:15,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:15,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:15,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:22:15,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:22:15,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:16,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:16,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:16,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:16,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 04:22:16,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 04:22:16,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:20,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:20,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:20,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:20,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:22:20,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:22:20,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:21,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:21,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:21,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:21,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:22:21,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:22:21,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:22,645 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:22:22,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:22:22,765 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.135
+2025-10-02 04:22:22,765 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:22:22,765 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:22:23,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:23,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:23,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:24,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:22:24,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:22:24,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:25,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:25,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:25,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:26,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:22:26,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:22:26,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:26,863 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:22:26,877 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:22:26,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.243
+2025-10-02 04:22:26,952 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:22:26,952 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:22:26,971 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:22:27,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:22:27,077 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.664
+2025-10-02 04:22:27,078 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:22:27,078 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:22:27,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:27,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:27,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:28,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 04:22:28,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 04:22:28,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:29,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:29,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:29,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:29,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 04:22:29,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 04:22:29,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:29,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:29,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:29,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:29,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:22:29,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:22:29,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:30,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:30,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:30,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:30,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:22:30,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:22:30,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:30,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:30,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:30,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:30,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:22:30,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:22:30,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:31,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:22:31,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:22:31,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.372
+2025-10-02 04:22:31,250 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:22:31,250 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:22:31,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:31,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:31,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:31,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:22:31,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:22:31,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:36,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:36,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:36,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:36,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:22:36,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:22:36,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:36,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:36,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:36,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:36,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:22:36,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:22:36,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:37,094 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:22:37,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:22:37,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:22:37,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s
+2025-10-02 04:22:37,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image)
+2025-10-02 04:22:37,396 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:22:37,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:37,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:37,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:37,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:22:37,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:22:37,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:38,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:38,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:38,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:38,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:22:38,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:22:38,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:39,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:39,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:39,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:39,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:22:39,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:22:39,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:41,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:41,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:41,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:41,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:22:41,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:22:41,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:41,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:41,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:41,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:41,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:22:41,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:22:41,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:42,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:42,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:42,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:42,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:22:42,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:22:42,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:43,806 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:43,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:43,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:43,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:22:43,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:22:43,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:45,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:45,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:45,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:45,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:22:45,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:22:45,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:46,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:46,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:46,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:47,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:22:47,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:22:47,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:47,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:47,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:47,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:47,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s
+2025-10-02 04:22:47,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image)
+2025-10-02 04:22:47,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:47,676 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:22:47,697 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:22:47,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.747
+2025-10-02 04:22:47,781 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:22:47,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:22:48,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:48,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:48,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:48,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:22:48,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:22:48,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:49,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:49,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:49,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:49,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:22:49,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:22:49,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:49,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:49,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:49,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:49,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:22:49,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:22:49,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:51,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:51,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:51,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:51,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.200s
+2025-10-02 04:22:51,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.200s (avg: 0.200s/image)
+2025-10-02 04:22:51,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:52,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:52,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:52,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:52,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:22:52,300 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:22:52,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:52,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:52,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:52,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:52,571 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:22:52,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:22:52,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:55,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:55,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:55,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:55,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:22:55,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:22:55,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:56,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:56,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:57,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:57,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:22:57,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:22:57,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:22:58,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:22:58,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:22:58,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:22:58,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:22:58,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:22:58,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:00,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:00,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:00,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:00,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:23:00,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:23:00,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:01,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:01,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:01,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:01,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:23:01,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:23:01,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:02,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:02,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:02,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:02,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:23:02,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:23:02,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:05,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:05,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:05,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:05,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:23:05,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:23:05,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:08,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:08,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:08,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:08,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:23:08,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:23:08,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:12,391 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:23:12,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:23:12,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:23:12,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s
+2025-10-02 04:23:12,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.162s/image)
+2025-10-02 04:23:12,716 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:23:14,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:14,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:14,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:15,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s
+2025-10-02 04:23:15,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image)
+2025-10-02 04:23:15,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:17,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:17,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:17,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:17,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:23:17,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:23:17,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:18,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:18,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:18,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:18,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:23:18,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:23:18,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:19,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:19,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:19,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:20,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:23:20,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:23:20,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:21,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:21,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:21,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:21,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:23:21,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:23:21,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:23,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:23,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:23,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:23,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:23:23,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:23:23,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:24,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:24,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:24,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:24,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:23:24,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:23:24,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:25,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:25,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:25,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:26,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:23:26,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:23:26,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:26,347 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:23:26,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:23:26,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:23:26,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s
+2025-10-02 04:23:26,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image)
+2025-10-02 04:23:26,642 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:23:27,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:27,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:27,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:27,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:23:27,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:23:27,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:28,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:28,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:28,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:28,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:23:28,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:23:28,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:29,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:29,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:29,994 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:30,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:23:30,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:23:30,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:31,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:31,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:31,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:31,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:23:31,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:23:31,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:33,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:33,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:33,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:33,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:23:33,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:23:33,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:34,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:34,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:34,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:34,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:23:34,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:23:34,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:36,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:36,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:36,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:36,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:23:36,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:23:36,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:37,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:37,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:37,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:37,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 04:23:37,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 04:23:37,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:39,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:39,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:39,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:39,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:23:40,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:23:40,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:40,399 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:23:40,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:23:40,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:23:40,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s
+2025-10-02 04:23:40,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image)
+2025-10-02 04:23:40,696 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:23:42,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:42,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:42,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:42,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:23:42,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:23:42,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:42,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:42,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:42,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:43,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:23:43,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:23:43,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:45,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:45,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:45,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:45,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:23:45,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:23:45,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:45,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:45,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:46,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:46,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:23:46,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:23:46,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:46,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:46,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:46,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:46,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:23:46,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:23:46,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:47,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:47,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:47,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:47,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:23:47,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:23:47,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:48,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:48,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:48,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:48,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 04:23:48,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 04:23:48,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:49,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:49,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:49,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:50,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:23:50,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:23:50,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:53,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:53,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:53,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:53,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:23:53,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:23:53,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:54,345 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:23:54,366 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:23:54,450 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.790
+2025-10-02 04:23:54,451 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:23:54,451 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:23:55,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:55,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:55,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:55,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:23:55,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:23:55,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:56,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:56,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:56,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:56,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:23:56,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:23:56,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:23:57,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:23:57,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:23:57,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:23:57,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:23:57,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:23:57,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:00,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:00,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:00,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:00,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:24:00,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:24:00,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:00,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:00,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:00,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:01,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 04:24:01,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 04:24:01,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:02,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:02,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:02,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:02,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 04:24:02,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 04:24:02,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:05,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:05,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:05,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:05,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:24:05,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:24:05,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:06,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:06,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:06,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:06,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:24:06,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:24:06,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:08,335 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:24:08,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:24:08,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:24:08,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.369s
+2025-10-02 04:24:08,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.369s (avg: 0.184s/image)
+2025-10-02 04:24:08,705 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:24:13,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:13,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:13,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:13,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:24:13,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:24:13,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:14,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:14,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:14,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:14,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:24:14,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:24:14,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:17,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:17,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:17,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:17,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:24:17,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:24:17,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:18,617 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:24:18,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:24:18,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:24:18,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s
+2025-10-02 04:24:18,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.156s/image)
+2025-10-02 04:24:18,930 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:24:19,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:19,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:19,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:19,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:24:19,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:24:19,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:22,985 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:24:23,011 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:24:23,102 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.868
+2025-10-02 04:24:23,102 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:24:23,103 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 04:24:23,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:23,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:23,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:23,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:24:23,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:24:23,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:24,044 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:24,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:24,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:24,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:24:24,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:24:24,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:25,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:25,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:25,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:25,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:24:25,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:24:25,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:28,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:28,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:28,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:28,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:24:28,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:24:28,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:30,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:30,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:30,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:30,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:24:30,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:24:30,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:31,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:31,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:31,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:31,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:24:31,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:24:31,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:33,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:33,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:33,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:33,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:24:33,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:24:33,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:34,210 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:24:34,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:24:34,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:24:34,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.351s
+2025-10-02 04:24:34,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.351s (avg: 0.175s/image)
+2025-10-02 04:24:34,562 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:24:35,585 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:24:35,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:24:35,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:24:35,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s
+2025-10-02 04:24:35,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image)
+2025-10-02 04:24:35,884 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:24:37,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:37,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:37,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:37,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:24:37,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:24:37,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:39,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:39,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:40,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:40,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 04:24:40,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 04:24:40,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:40,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:40,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:40,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:40,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:24:40,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:24:40,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:40,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:40,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:40,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:40,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:24:40,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:24:40,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:41,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:41,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:41,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:41,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:24:41,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:24:41,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:44,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:44,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:44,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:44,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:24:44,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:24:44,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:44,916 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:24:44,941 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:24:45,022 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.047
+2025-10-02 04:24:45,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:24:45,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:24:46,049 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:24:46,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:24:46,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:24:46,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.354s
+2025-10-02 04:24:46,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.354s (avg: 0.177s/image)
+2025-10-02 04:24:46,404 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:24:47,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:47,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:47,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:47,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:24:47,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:24:47,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:48,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:24:48,569 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:24:48,641 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.166
+2025-10-02 04:24:48,641 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:24:48,641 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:24:50,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:50,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:50,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:50,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:24:50,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:24:50,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:51,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:51,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:51,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:51,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:24:51,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:24:51,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:52,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:52,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:52,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:52,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:24:52,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:24:52,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:53,324 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:24:53,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:24:53,420 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.785
+2025-10-02 04:24:53,420 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:24:53,421 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:24:53,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:53,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:53,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:53,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:24:53,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:24:53,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:55,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:55,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:55,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:55,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:24:55,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:24:55,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:24:57,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:24:57,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:24:57,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:24:57,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:24:57,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:24:57,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:00,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:00,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:00,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:00,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 04:25:00,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 04:25:00,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:00,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:00,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:00,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:00,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:25:00,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:25:00,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:02,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:02,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:02,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:02,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:25:02,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:25:02,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:02,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:02,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:02,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:02,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:25:02,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:25:02,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:04,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:04,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:04,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:04,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:25:04,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:25:04,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:05,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:05,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:05,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:05,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:25:05,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:25:05,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:07,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:07,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:07,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:07,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:25:07,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:25:07,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:09,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:09,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:09,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:09,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s
+2025-10-02 04:25:09,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image)
+2025-10-02 04:25:09,272 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:09,418 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:25:09,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:25:09,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:25:09,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s
+2025-10-02 04:25:09,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image)
+2025-10-02 04:25:09,715 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:25:12,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:12,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:12,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:13,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:25:13,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:25:13,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:13,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:13,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:13,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:13,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:25:13,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:25:13,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:13,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:13,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:13,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:13,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:25:13,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:25:13,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:14,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:14,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:14,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:14,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:25:14,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:25:14,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:14,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:14,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:14,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:14,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:25:14,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:25:14,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:15,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:15,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:15,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:15,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:25:15,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:25:15,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:15,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:15,927 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:15,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:16,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:25:16,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:25:16,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:17,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:17,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:17,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:17,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:25:17,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:25:17,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:17,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:17,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:17,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:18,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:25:18,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:25:18,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:18,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:18,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:19,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:19,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:25:19,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:25:19,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:19,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:19,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:19,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:19,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:25:19,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:25:19,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:19,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:19,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:19,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:20,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:25:20,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:25:20,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:22,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:22,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:22,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:22,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:25:22,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:25:22,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:25,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:25,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:25,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:25,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:25:25,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:25:25,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:25,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:25,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:25,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:25,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:25:25,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:25:25,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:27,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:27,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:27,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:27,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 04:25:27,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 04:25:27,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:29,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:29,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:29,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:29,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:25:29,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:25:29,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:31,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:31,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:31,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:31,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:25:31,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:25:31,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:31,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:31,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:31,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:31,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:25:31,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:25:31,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:33,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:33,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:34,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:34,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:25:34,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:25:34,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:34,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:34,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:34,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:34,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:25:34,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:25:34,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:36,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:36,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:36,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:36,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:25:36,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:25:36,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:37,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:37,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:37,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:37,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 04:25:37,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 04:25:37,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:38,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:38,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:38,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:38,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:25:38,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:25:38,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:40,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:40,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:40,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:40,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:25:40,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:25:40,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:25:54,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:25:54,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:25:54,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:25:54,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:25:54,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:25:54,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:00,359 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:26:00,385 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:26:00,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.922
+2025-10-02 04:26:00,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:26:00,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:26:03,892 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:26:03,917 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:26:03,994 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.965
+2025-10-02 04:26:03,994 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:26:03,994 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 04:26:04,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:04,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:04,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:04,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:26:04,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:26:04,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:08,892 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:26:08,922 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:26:09,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.180
+2025-10-02 04:26:09,003 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:26:09,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:26:10,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:10,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:10,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:10,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:26:10,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:26:10,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:12,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:12,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:12,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:12,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:26:12,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:26:12,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:14,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:14,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:14,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:14,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:26:14,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:26:14,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:16,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:16,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:16,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:16,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:26:16,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:26:16,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:17,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:17,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:17,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:17,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 04:26:17,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 04:26:17,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:19,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:19,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:19,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:19,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:26:19,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:26:19,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:20,991 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:26:21,014 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:26:21,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=194.513
+2025-10-02 04:26:21,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 04:26:21,086 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 04:26:23,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:23,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:23,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:23,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:26:23,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:26:23,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:25,103 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:26:25,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:26:25,201 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=216.143
+2025-10-02 04:26:25,201 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:26:25,201 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:26:29,735 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:26:29,759 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:26:29,832 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.602
+2025-10-02 04:26:29,832 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:26:29,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:26:30,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:30,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:30,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:30,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:26:30,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:26:30,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:34,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:34,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:34,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:34,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:26:34,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:26:34,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:35,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:35,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:35,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:35,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:26:35,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:26:35,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:37,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:37,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:37,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:37,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:26:37,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:26:37,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:40,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:40,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:40,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:41,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:26:41,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:26:41,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:41,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:42,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:42,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:42,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:26:42,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:26:42,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:45,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:45,784 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:45,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:45,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:26:45,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:26:45,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:46,126 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:26:46,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:26:46,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:26:46,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 04:26:46,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 04:26:46,409 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:26:48,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:48,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:49,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:49,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:26:49,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:26:49,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:51,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:51,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:51,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:51,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:26:51,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:26:51,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:52,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:52,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:52,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:52,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:26:52,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:26:52,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:57,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:57,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:57,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:57,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:26:57,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:26:57,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:26:57,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:26:57,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:26:57,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:26:57,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:26:57,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:26:57,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:01,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:01,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:01,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:02,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:27:02,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:27:02,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:05,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:05,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:05,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:05,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:27:05,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:27:05,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:06,607 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:27:06,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:27:06,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.337
+2025-10-02 04:27:06,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:27:06,707 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:27:12,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:27:12,065 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:27:12,140 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.675
+2025-10-02 04:27:12,141 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:27:12,141 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:27:12,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:12,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:12,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:12,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:27:12,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:27:12,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:13,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:13,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:13,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:13,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:27:13,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:27:13,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:15,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:15,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:15,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:15,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:27:15,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:27:15,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:16,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:16,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:16,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:16,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:27:16,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:27:16,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:18,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:18,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:18,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:19,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:27:19,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:27:19,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:20,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:20,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:20,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:20,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:27:20,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:27:20,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:21,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:21,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:21,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:21,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:27:21,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:27:21,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:21,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:21,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:21,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:21,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:27:21,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:27:21,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:24,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:24,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:24,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:24,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:27:24,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:27:24,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:26,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:26,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:26,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:27,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:27:27,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:27:27,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:27,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:27,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:27,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:27,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:27:27,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:27:27,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:29,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:29,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:29,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:30,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:27:30,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:27:30,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:31,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:31,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:31,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:31,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:27:31,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:27:31,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:34,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:34,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:34,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:34,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:27:34,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:27:34,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:35,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:35,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:35,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:35,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:27:35,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:27:35,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:39,357 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:27:39,391 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:27:39,473 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.307
+2025-10-02 04:27:39,473 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:27:39,473 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 04:27:40,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:40,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:40,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:40,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:27:40,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:27:40,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:40,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:40,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:40,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:40,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 04:27:40,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 04:27:40,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:44,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:44,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:44,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:44,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:27:44,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:27:44,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:45,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:45,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:45,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:45,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:27:45,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:27:45,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:46,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:46,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:46,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:46,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:27:46,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:27:46,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:49,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:49,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:49,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:49,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:27:49,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:27:49,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:51,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:51,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:51,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:51,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:27:51,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:27:51,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:53,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:53,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:53,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:53,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:27:53,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:27:53,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:53,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:53,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:53,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:54,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:27:54,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:27:54,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:54,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:54,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:54,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:54,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:27:54,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:27:54,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:27:58,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:27:58,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:27:58,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:27:58,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:27:58,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:27:58,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:01,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:01,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:01,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:01,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:28:01,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:28:01,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:02,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:02,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:02,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:03,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:28:03,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:28:03,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:03,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:03,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:03,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:03,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:28:03,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:28:03,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:03,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:28:03,944 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:28:04,026 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.950
+2025-10-02 04:28:04,026 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:28:04,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:28:07,018 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:28:07,043 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:28:07,131 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.745
+2025-10-02 04:28:07,131 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:28:07,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:28:07,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:07,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:07,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:07,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:28:07,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:28:07,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:08,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:08,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:08,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:08,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:28:08,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:28:08,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:10,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:28:10,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:28:10,399 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.787
+2025-10-02 04:28:10,399 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:28:10,400 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:28:10,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:10,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:10,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:10,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:28:10,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:28:10,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:11,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:11,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:11,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:11,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:28:11,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:28:11,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:12,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:12,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:12,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:12,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:28:12,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:28:12,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:13,441 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:28:13,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:28:13,544 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.533
+2025-10-02 04:28:13,544 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:28:13,544 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:28:15,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:15,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:15,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:15,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:28:15,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:28:15,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:16,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:16,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:16,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:16,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:28:16,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:28:16,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:17,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:17,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:17,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:17,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:28:17,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:28:17,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:18,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:18,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:18,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:18,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:28:18,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:28:18,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:19,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:19,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:19,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:19,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:28:19,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:28:19,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:20,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:20,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:20,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:20,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:28:20,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:28:20,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:24,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:24,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:24,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:24,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:28:24,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:28:24,903 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:28,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:28,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:28,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:29,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:28:29,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:28:29,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:29,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:29,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:29,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:29,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:28:29,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:28:29,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:30,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:30,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:30,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:30,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:28:30,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:28:30,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:32,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:32,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:32,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:32,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:28:32,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:28:32,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:32,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:32,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:32,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:32,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:28:32,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:28:32,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:35,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:35,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:35,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:36,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:28:36,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:28:36,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:36,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:36,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:36,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:36,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:28:36,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:28:36,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:39,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:39,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:39,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:39,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:28:39,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:28:39,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:42,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:42,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:42,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:43,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:28:43,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:28:43,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:44,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:44,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:44,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:45,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:28:45,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:28:45,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:45,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:45,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:46,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:46,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:28:46,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:28:46,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:48,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:48,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:48,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:49,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:28:49,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:28:49,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:49,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:49,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:49,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:50,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:28:50,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:28:50,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:55,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:55,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:55,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:55,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:28:55,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:28:55,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:28:57,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:28:57,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:28:57,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:28:57,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:28:57,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:28:57,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:00,019 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:29:00,040 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:29:00,112 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.424
+2025-10-02 04:29:00,112 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:29:00,113 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:29:00,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:00,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:00,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:00,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:29:00,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:29:00,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:01,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:01,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:01,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:01,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 04:29:01,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 04:29:01,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:03,938 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:29:03,961 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:29:04,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.207
+2025-10-02 04:29:04,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:29:04,034 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:29:06,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:06,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:06,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:06,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 04:29:06,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 04:29:06,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:07,463 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:29:07,483 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:29:07,548 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.343
+2025-10-02 04:29:07,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.065s
+2025-10-02 04:29:07,549 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.066s
+2025-10-02 04:29:11,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:11,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:11,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:11,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 04:29:11,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 04:29:11,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:17,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:17,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:17,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:17,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 04:29:17,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 04:29:17,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:22,491 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:29:22,514 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:29:22,602 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=133.735
+2025-10-02 04:29:22,602 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:29:22,602 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 04:29:22,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:22,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:22,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:22,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s
+2025-10-02 04:29:22,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image)
+2025-10-02 04:29:22,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:24,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:29:24,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:29:24,501 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=169.045
+2025-10-02 04:29:24,501 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:29:24,501 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 04:29:26,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:26,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:26,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:27,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:29:27,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:29:27,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:28,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:28,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:28,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:28,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:29:28,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:29:28,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:28,596 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:29:28,619 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:29:28,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=199.096
+2025-10-02 04:29:28,707 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:29:28,708 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:29:32,211 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:29:32,244 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:29:32,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.109
+2025-10-02 04:29:32,337 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 04:29:32,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s
+2025-10-02 04:29:33,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:33,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:33,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:33,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:29:33,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:29:33,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:33,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:33,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:33,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:33,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:29:33,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:29:33,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:34,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:34,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:34,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:34,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:29:34,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:29:34,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:38,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:38,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:38,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:38,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:29:38,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:29:38,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:39,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:39,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:39,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:39,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:29:39,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:29:39,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:43,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:43,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:43,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:43,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:29:43,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:29:43,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:44,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:44,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:44,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:44,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:29:44,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:29:44,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:49,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:49,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:49,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:49,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:29:49,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:29:49,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:50,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:50,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:51,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:51,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:29:51,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:29:51,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:55,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:55,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:55,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:55,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 04:29:55,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 04:29:55,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:57,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:29:57,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:29:57,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:29:57,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s
+2025-10-02 04:29:57,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image)
+2025-10-02 04:29:57,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:29:59,006 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:29:59,029 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:29:59,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.863
+2025-10-02 04:29:59,117 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:29:59,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 04:30:00,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:00,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:00,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:00,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:30:00,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:30:00,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:00,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:00,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:01,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:01,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:30:01,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:30:01,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:04,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:04,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:04,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:04,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:30:04,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:30:04,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:04,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:04,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:04,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:04,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:30:04,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:30:04,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:06,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:06,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:06,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:06,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:30:06,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:30:06,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:09,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:09,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:09,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:09,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:30:09,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:30:09,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:12,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:12,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:12,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:12,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:30:12,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:30:12,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:13,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:13,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:14,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:14,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s
+2025-10-02 04:30:14,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image)
+2025-10-02 04:30:14,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:15,067 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:30:15,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:30:15,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:30:15,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.316s
+2025-10-02 04:30:15,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.316s (avg: 0.158s/image)
+2025-10-02 04:30:15,384 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:30:19,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:19,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:19,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:19,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:30:19,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:30:19,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:21,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:21,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:21,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:21,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:30:21,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:30:21,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:25,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:25,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:25,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:25,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:30:25,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:30:25,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:26,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:26,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:26,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:26,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:30:26,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:30:26,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:28,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:28,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:28,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:28,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:30:28,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:30:28,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:30,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:30,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:30,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:30,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:30:30,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:30:30,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:30,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:30,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:30,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:31,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:30:31,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:30:31,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:31,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:31,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:31,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:31,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:30:31,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:30:31,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:36,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:36,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:36,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:36,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:30:36,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:30:36,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:36,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:36,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:36,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:36,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:30:36,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:30:36,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:39,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:39,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:39,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:39,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:30:39,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:30:39,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:40,068 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:30:40,099 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:30:40,190 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.677
+2025-10-02 04:30:40,191 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:30:40,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 04:30:43,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:43,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:43,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:43,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:30:43,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:30:43,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:43,685 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:30:43,702 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:30:43,775 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.487
+2025-10-02 04:30:43,776 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:30:43,776 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:30:43,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:30:43,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:30:43,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.458
+2025-10-02 04:30:43,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:30:43,896 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:30:44,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:44,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:44,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:45,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:30:45,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:30:45,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:46,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:46,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:46,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:46,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:30:46,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:30:46,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:47,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:47,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:47,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:47,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:30:47,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:30:47,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:47,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:30:47,974 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:30:48,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.281
+2025-10-02 04:30:48,049 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:30:48,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:30:53,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:53,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:53,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:53,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:30:53,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:30:53,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:54,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:54,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:54,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:54,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:30:54,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:30:54,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:57,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:30:57,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:30:57,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:30:57,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:30:57,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:30:57,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:30:58,296 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:30:58,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:30:58,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:30:58,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s
+2025-10-02 04:30:58,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image)
+2025-10-02 04:30:58,566 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:31:01,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:01,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:02,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:02,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:31:02,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:31:02,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:02,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:02,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:02,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:02,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:31:02,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:31:02,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:02,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:02,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:03,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:03,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:31:03,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:31:03,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:04,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:04,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:04,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:04,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:31:04,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:31:04,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:05,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:05,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:05,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:06,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:31:06,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:31:06,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:12,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:12,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:12,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:12,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:31:12,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:31:12,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:12,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:31:12,224 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:31:12,313 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.921
+2025-10-02 04:31:12,314 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:31:12,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:31:13,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:13,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:13,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:13,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:31:13,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:31:13,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:14,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:14,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:14,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:14,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:31:14,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:31:14,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:16,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:16,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:16,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:16,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:31:16,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:31:16,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:17,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:31:17,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:31:17,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=31.369
+2025-10-02 04:31:17,736 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 04:31:17,736 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:31:18,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:18,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:18,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:18,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:31:18,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:31:18,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:19,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:19,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:19,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:20,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:31:20,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:31:20,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:21,440 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:31:21,464 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:31:21,555 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.493
+2025-10-02 04:31:21,555 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:31:21,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:31:21,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:21,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:22,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:22,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:31:22,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:31:22,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:22,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:22,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:22,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:22,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:31:22,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:31:22,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:24,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:24,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:24,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:24,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:31:24,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:31:24,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:25,221 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:25,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:25,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:25,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:31:25,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:31:25,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:26,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:26,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:26,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:26,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:31:26,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:31:26,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:27,927 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:27,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:27,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:28,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:31:28,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:31:28,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:28,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:28,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:28,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:28,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:31:28,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:31:28,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:29,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:29,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:29,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:29,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s
+2025-10-02 04:31:29,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image)
+2025-10-02 04:31:29,542 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:29,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:29,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:29,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:29,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:31:29,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:31:29,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:30,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:30,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:30,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:30,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:31:30,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:31:30,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:31,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:31,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:31,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:31,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:31:31,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:31:31,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:31,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:31,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:31,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:31,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:31:31,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:31:31,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:34,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:34,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:34,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:34,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:31:34,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:31:34,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:35,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:35,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:35,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:35,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:31:35,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:31:35,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:37,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:37,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:37,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:37,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:31:37,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:31:37,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:37,630 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:31:37,665 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:31:37,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.922
+2025-10-02 04:31:37,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:31:37,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:31:38,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:38,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:38,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:38,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:31:38,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:31:38,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:39,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:39,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:39,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:39,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 04:31:39,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 04:31:39,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:40,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:40,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:40,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:40,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:31:40,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:31:40,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:41,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:31:41,458 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:31:41,535 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.543
+2025-10-02 04:31:41,535 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:31:41,535 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:31:42,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:42,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:42,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:42,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:31:42,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:31:42,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:43,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:43,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:43,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:43,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:31:43,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:31:43,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:44,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:44,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:44,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:44,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:31:44,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:31:44,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:45,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:45,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:45,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:45,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:31:45,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:31:45,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:45,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:31:45,715 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:31:45,799 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.029
+2025-10-02 04:31:45,799 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:31:45,799 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:31:48,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:48,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:48,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:48,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:31:48,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:31:48,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:50,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:50,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:50,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:50,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:31:50,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:31:50,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:52,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:52,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:52,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:52,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:31:52,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:31:52,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:52,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:52,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:52,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:52,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:31:52,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:31:52,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:53,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:31:53,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:31:53,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:31:54,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:31:54,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:31:54,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:31:55,308 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:31:55,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:31:55,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:31:55,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s
+2025-10-02 04:31:55,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image)
+2025-10-02 04:31:55,585 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:32:01,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:01,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:01,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:01,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:32:01,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:32:01,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:01,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:01,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:01,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:01,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:32:01,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:32:01,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:02,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:02,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:02,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:02,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:32:02,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:32:02,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:04,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:04,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:04,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:04,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:32:04,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:32:04,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:05,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:05,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:05,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:05,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:32:05,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:32:05,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:06,870 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:32:06,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:32:06,968 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.407
+2025-10-02 04:32:06,969 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:32:06,969 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 04:32:07,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:07,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:07,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:07,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:32:07,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:32:07,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:08,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:08,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:08,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:08,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:32:08,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:32:08,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:09,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:09,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:09,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:09,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:32:09,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:32:09,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:10,086 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:32:10,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:32:10,180 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.498
+2025-10-02 04:32:10,180 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:32:10,180 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:32:11,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:11,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:11,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:11,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 04:32:11,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 04:32:11,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:11,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:11,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:11,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:12,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 04:32:12,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 04:32:12,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:13,121 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:32:13,137 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:32:13,208 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.464
+2025-10-02 04:32:13,209 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 04:32:13,209 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 04:32:13,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:13,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:13,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:13,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:32:13,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:32:13,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:15,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:15,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:15,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:16,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:32:16,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:32:16,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:18,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:18,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:18,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:18,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:32:18,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:32:18,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:19,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:19,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:19,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:19,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:32:19,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:32:19,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:20,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:20,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:20,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:20,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:32:20,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:32:20,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:22,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:22,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:22,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:22,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:32:22,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:32:22,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:22,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:22,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:22,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:22,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:32:22,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:32:22,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:25,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:25,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:25,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:26,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:32:26,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:32:26,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:27,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:27,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:27,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:27,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:32:27,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:32:27,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:29,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:29,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:29,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:29,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:32:29,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:32:29,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:29,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:29,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:29,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:29,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:32:29,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:32:29,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:30,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:30,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:30,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:30,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:32:30,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:32:30,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:31,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:31,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:31,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:32,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:32:32,056 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:32:32,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:35,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:35,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:35,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:35,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:32:35,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:32:35,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:36,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:36,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:36,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:36,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:32:36,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:32:36,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:37,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:37,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:37,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:37,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:32:37,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:32:37,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:39,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:39,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:39,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:39,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:32:39,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:32:39,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:43,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:43,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:43,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:43,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:32:43,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:32:43,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:44,823 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:32:44,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:32:44,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:32:45,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s
+2025-10-02 04:32:45,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image)
+2025-10-02 04:32:45,128 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:32:45,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:45,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:45,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:45,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:32:45,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:32:45,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:46,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:46,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:46,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:47,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:32:47,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:32:47,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:48,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:48,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:49,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:49,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:32:49,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:32:49,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:49,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:49,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:49,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:49,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:32:49,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:32:49,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:50,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:50,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:50,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:50,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:32:50,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:32:50,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:55,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:55,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:55,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:55,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:32:55,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:32:55,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:56,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:32:56,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:32:56,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:32:56,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:32:56,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:32:56,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:32:59,400 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:32:59,424 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:32:59,507 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.455
+2025-10-02 04:32:59,507 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 04:32:59,507 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:33:02,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:02,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:02,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:02,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:33:02,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:33:02,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:06,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:06,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:06,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:06,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:33:06,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:33:06,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:06,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:06,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:06,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:06,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:33:06,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:33:06,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:09,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:09,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:09,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:09,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:33:09,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:33:09,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:10,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:10,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:10,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:10,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:33:10,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:33:10,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:12,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:12,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:12,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:12,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:33:12,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:33:12,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:14,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:14,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:15,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:15,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:33:15,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:33:15,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:15,298 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:33:15,329 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:33:15,403 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.327
+2025-10-02 04:33:15,403 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:33:15,403 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:33:17,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:17,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:17,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:18,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:33:18,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:33:18,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:19,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:19,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:19,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:20,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:33:20,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:33:20,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:23,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:23,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:23,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:23,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:33:23,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:33:23,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:25,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:33:25,230 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:33:25,312 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.497
+2025-10-02 04:33:25,313 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 04:33:25,315 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:33:26,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:26,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:26,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:26,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:33:26,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:33:26,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:30,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:30,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:30,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:30,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:33:30,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:33:30,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:34,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:34,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:34,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:34,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:33:34,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:33:34,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:37,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:37,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:37,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:37,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:33:37,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:33:37,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:41,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:41,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:41,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:41,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:33:41,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:33:41,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:46,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:46,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:46,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:46,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:33:46,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:33:46,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:49,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:49,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:49,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:50,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:33:50,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:33:50,066 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:51,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:51,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:51,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:51,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:33:51,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:33:51,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:51,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:51,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:51,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:51,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s
+2025-10-02 04:33:51,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image)
+2025-10-02 04:33:51,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:55,710 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:33:55,731 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:33:55,817 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=116.008
+2025-10-02 04:33:55,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:33:55,818 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 04:33:56,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:56,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:56,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:57,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.203s
+2025-10-02 04:33:57,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.203s (avg: 0.203s/image)
+2025-10-02 04:33:57,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:57,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:57,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:57,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:58,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:33:58,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:33:58,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:58,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:58,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:58,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:58,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:33:58,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:33:58,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:33:59,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:33:59,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:33:59,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:33:59,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:33:59,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:33:59,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:01,388 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:34:01,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:34:01,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:34:01,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s
+2025-10-02 04:34:01,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image)
+2025-10-02 04:34:01,714 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:34:03,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:03,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:03,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:03,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:34:03,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:34:03,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:05,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:05,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:05,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:05,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:34:05,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:34:05,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:05,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:05,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:05,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:06,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s
+2025-10-02 04:34:06,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image)
+2025-10-02 04:34:06,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:06,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:06,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:06,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:06,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:34:06,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:34:06,527 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:08,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:08,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:08,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:08,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:34:08,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:34:08,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:08,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:08,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:08,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:08,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:34:08,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:34:08,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:10,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:10,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:10,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:10,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:34:10,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:34:10,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:11,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:11,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:11,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:11,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s
+2025-10-02 04:34:11,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image)
+2025-10-02 04:34:11,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:12,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:12,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:12,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:12,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:34:12,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:34:12,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:12,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:12,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:12,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:12,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:34:12,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:34:12,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:14,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:14,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:14,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:14,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:34:14,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:34:14,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:15,902 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:34:15,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:34:15,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:34:16,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s
+2025-10-02 04:34:16,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image)
+2025-10-02 04:34:16,213 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:34:17,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:17,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:18,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:18,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s
+2025-10-02 04:34:18,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image)
+2025-10-02 04:34:18,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:20,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:20,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:20,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:20,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:34:20,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:34:20,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:22,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:22,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:22,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:22,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:34:22,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:34:22,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:23,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:23,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:23,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:24,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 04:34:24,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 04:34:24,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:29,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:29,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:29,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:29,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:34:29,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:34:29,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:29,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:29,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:29,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:29,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 04:34:29,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 04:34:29,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:35,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:35,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:35,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:35,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s
+2025-10-02 04:34:35,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image)
+2025-10-02 04:34:35,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:36,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:36,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:36,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:36,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:34:36,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:34:36,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:38,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:38,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:38,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:38,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:34:38,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:34:38,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:43,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:43,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:43,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:43,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:34:43,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:34:43,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:43,700 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:34:43,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:34:43,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:34:43,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s
+2025-10-02 04:34:43,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image)
+2025-10-02 04:34:43,972 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:34:50,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:50,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:50,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:50,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:34:50,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:34:50,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:51,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:51,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:51,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:51,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:34:51,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:34:51,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:51,344 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:34:51,370 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:34:51,458 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.275
+2025-10-02 04:34:51,458 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:34:51,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:34:51,983 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:51,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:52,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:52,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:34:52,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:34:52,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:34:54,749 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:34:54,771 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:34:54,862 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.287
+2025-10-02 04:34:54,863 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:34:54,864 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:34:58,280 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:34:58,305 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:34:58,397 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.249
+2025-10-02 04:34:58,397 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 04:34:58,398 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:34:58,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:34:58,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:34:58,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:34:58,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:34:58,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:34:58,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:01,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:01,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:01,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:01,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:35:01,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:35:01,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:05,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:05,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:05,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:05,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:35:05,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:35:05,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:06,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:06,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:06,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:06,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:35:06,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:35:06,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:09,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:09,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:09,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:09,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:35:09,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:35:09,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:15,227 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:35:15,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:35:15,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:35:15,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s
+2025-10-02 04:35:15,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image)
+2025-10-02 04:35:15,530 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:35:19,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:19,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:19,721 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.498
+2025-10-02 04:35:19,722 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 04:35:19,722 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 04:35:20,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:20,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:20,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:20,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:35:20,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:35:20,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:24,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:24,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:24,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:24,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:35:24,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:35:24,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:24,828 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:24,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:24,925 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.996
+2025-10-02 04:35:24,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:35:24,925 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:35:25,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:25,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:25,276 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:25,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:35:25,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:35:25,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:28,711 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:28,735 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:28,819 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.548
+2025-10-02 04:35:28,819 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:35:28,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:35:28,883 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:28,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:28,984 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.717
+2025-10-02 04:35:28,984 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:35:28,984 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:35:30,244 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:35:30,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:35:30,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:35:30,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s
+2025-10-02 04:35:30,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image)
+2025-10-02 04:35:30,538 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:35:31,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:31,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:31,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:31,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:35:31,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:35:31,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:32,306 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:32,344 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:32,427 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.142
+2025-10-02 04:35:32,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 04:35:32,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:35:32,592 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:32,613 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:32,692 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.289
+2025-10-02 04:35:32,692 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:35:32,693 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:35:35,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:35,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:35,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:35,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:35:35,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:35:35,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:36,413 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:36,438 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:36,527 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.853
+2025-10-02 04:35:36,527 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:35:36,527 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:35:36,950 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:36,977 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:37,061 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.198
+2025-10-02 04:35:37,062 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:35:37,063 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:35:40,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:40,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:40,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:40,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:35:40,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:35:40,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:40,641 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:35:40,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:35:40,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.333
+2025-10-02 04:35:40,750 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:35:40,750 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 04:35:41,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:41,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:41,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:41,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:35:41,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:35:41,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:43,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:43,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:43,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:43,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:35:43,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:35:43,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:46,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:46,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:46,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:46,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:35:46,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:35:46,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:46,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:46,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:46,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:46,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:35:46,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:35:46,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:47,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:47,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:47,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:47,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:35:47,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:35:47,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:48,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:48,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:48,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:48,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:35:48,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:35:48,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:52,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:52,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:52,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:52,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:35:52,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:35:52,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:53,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:53,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:53,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:53,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:35:53,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:35:53,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:54,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:54,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:54,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:55,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:35:55,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:35:55,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:57,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:57,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:57,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:57,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:35:57,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:35:57,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:58,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:58,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:58,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:58,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:35:58,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:35:58,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:35:59,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:35:59,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:35:59,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:35:59,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:35:59,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:35:59,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:03,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:03,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:03,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:03,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:36:03,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:36:03,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:04,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:04,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:04,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:05,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:36:05,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:36:05,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:06,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:06,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:06,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:06,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:36:06,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:36:06,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:07,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:07,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:07,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:07,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:36:07,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:36:07,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:10,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:10,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:10,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:10,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:36:10,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:36:10,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:10,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:10,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:10,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:11,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:36:11,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:36:11,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:11,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:11,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:11,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:11,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:36:11,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:36:11,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:11,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:11,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:11,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:11,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 04:36:11,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 04:36:11,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:11,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:11,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:11,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:12,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:36:12,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:36:12,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:13,068 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:36:13,089 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:36:13,162 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=163.736
+2025-10-02 04:36:13,162 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:36:13,162 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:36:13,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:13,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:13,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:13,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:36:13,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:36:13,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:14,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:14,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:14,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:14,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:36:14,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:36:14,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:15,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:15,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:16,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:16,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:36:16,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:36:16,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:16,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:16,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:16,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:16,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:36:16,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:36:16,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:18,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:18,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:18,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:18,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:36:18,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:36:18,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:19,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:19,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:19,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:19,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:36:19,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:36:19,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:19,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:19,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:19,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:19,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s
+2025-10-02 04:36:19,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image)
+2025-10-02 04:36:19,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:22,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:22,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:22,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:22,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:36:22,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:36:22,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:22,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:22,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:22,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:22,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:36:22,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:36:22,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:22,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:22,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:22,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:23,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:36:23,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:36:23,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:23,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:23,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:23,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:23,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:36:23,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:36:23,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:23,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:23,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:24,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:24,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:36:24,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:36:24,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:24,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:24,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:24,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:25,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:36:25,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:36:25,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:27,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:27,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:27,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:27,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:36:27,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:36:27,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:28,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:28,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:28,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:28,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:36:28,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:36:28,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:30,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:30,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:30,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:30,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:36:30,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:36:30,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:32,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:32,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:32,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:32,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:36:32,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:36:32,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:33,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:33,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:33,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:33,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:36:33,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:36:33,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:33,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:33,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:33,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:33,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 04:36:33,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 04:36:33,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:33,716 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:36:33,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:36:33,794 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.411
+2025-10-02 04:36:33,795 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.066s
+2025-10-02 04:36:33,795 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.067s
+2025-10-02 04:36:33,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:33,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:33,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:33,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:36:33,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:36:33,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:36,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:36,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:36,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:37,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:36:37,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:36:37,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:40,202 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:36:40,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:36:40,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:36:40,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s
+2025-10-02 04:36:40,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image)
+2025-10-02 04:36:40,502 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:36:40,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:40,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:40,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:41,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:36:41,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:36:41,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:41,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:41,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:41,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:41,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:36:41,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:36:41,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:45,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:45,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:45,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:45,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:36:45,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:36:45,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:45,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:45,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:45,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:45,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:36:45,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:36:45,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:47,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:47,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:47,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:47,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:36:47,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:36:47,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:48,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:48,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:48,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:48,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:36:48,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:36:48,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:50,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:50,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:50,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:50,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:36:50,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:36:50,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:51,066 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:36:51,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:36:51,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:36:51,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.343s
+2025-10-02 04:36:51,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.343s (avg: 0.171s/image)
+2025-10-02 04:36:51,411 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:36:54,965 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:36:54,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:36:55,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:36:55,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s
+2025-10-02 04:36:55,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image)
+2025-10-02 04:36:55,258 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:36:55,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:55,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:55,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:55,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:36:55,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:36:55,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:55,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:55,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:56,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:56,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 04:36:56,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 04:36:56,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:56,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:56,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:56,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:56,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:36:56,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:36:56,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:36:59,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:36:59,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:36:59,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:36:59,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:36:59,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:36:59,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:00,952 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:37:00,978 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:37:01,067 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.632
+2025-10-02 04:37:01,067 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:37:01,070 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 04:37:01,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:01,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:01,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:02,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:37:02,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:37:02,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:07,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:07,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:07,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:07,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 04:37:07,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 04:37:07,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:10,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:10,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:10,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:10,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 04:37:10,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 04:37:10,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:12,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:12,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:12,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:12,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:37:12,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:37:12,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:14,846 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:37:14,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:37:14,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:37:15,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s
+2025-10-02 04:37:15,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image)
+2025-10-02 04:37:15,157 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:37:15,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:15,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:15,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:15,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:37:15,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:37:15,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:15,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:37:15,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:37:15,900 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.462
+2025-10-02 04:37:15,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:37:15,900 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:37:16,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:16,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:17,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:17,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:37:17,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:37:17,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:19,792 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:37:19,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:37:19,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:37:20,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s
+2025-10-02 04:37:20,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.150s/image)
+2025-10-02 04:37:20,093 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:37:21,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:21,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:21,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:21,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:37:21,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:37:21,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:23,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:23,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:23,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:23,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:37:23,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:37:23,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:25,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:25,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:25,819 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:25,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:37:25,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:37:25,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:26,652 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:37:26,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:37:26,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:37:26,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s
+2025-10-02 04:37:26,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image)
+2025-10-02 04:37:26,931 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:37:30,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:30,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:30,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:30,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:37:30,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:37:30,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:31,329 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:37:31,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:37:31,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:37:31,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s
+2025-10-02 04:37:31,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image)
+2025-10-02 04:37:31,627 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:37:34,168 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:37:34,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:37:34,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:37:34,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s
+2025-10-02 04:37:34,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image)
+2025-10-02 04:37:34,474 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:37:35,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:35,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:35,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:35,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:37:35,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:37:35,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:36,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:36,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:36,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:37,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:37:37,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:37:37,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:39,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:39,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:39,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:39,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:37:39,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:37:39,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:39,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:39,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:39,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:39,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:37:39,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:37:39,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:40,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:40,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:40,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:40,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:37:40,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:37:40,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:42,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:42,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:42,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:42,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 04:37:42,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 04:37:42,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:43,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:43,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:43,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:43,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:37:43,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:37:43,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:44,269 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:37:44,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:37:44,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:37:44,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.321s
+2025-10-02 04:37:44,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.321s (avg: 0.160s/image)
+2025-10-02 04:37:44,591 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:37:46,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:46,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:46,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:46,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:37:46,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:37:46,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:47,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:47,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:47,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:47,778 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:37:47,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:37:47,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:49,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:49,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:49,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:49,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:37:49,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:37:49,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:49,419 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:37:49,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:37:49,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:37:49,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s
+2025-10-02 04:37:49,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image)
+2025-10-02 04:37:49,719 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:37:50,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:50,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:50,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:50,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:37:50,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:37:50,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:51,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:51,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:51,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:51,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:37:51,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:37:51,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:52,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:52,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:53,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:53,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:37:53,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:37:53,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:54,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:54,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:54,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:54,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 04:37:54,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 04:37:54,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:54,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:54,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:54,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:55,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:37:55,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:37:55,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:55,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:55,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:55,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:55,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:37:55,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:37:55,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:55,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:55,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:55,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:56,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:37:56,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:37:56,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:56,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:56,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:56,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:56,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:37:56,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:37:56,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:57,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:57,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:57,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:57,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:37:57,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:37:57,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:57,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:57,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:57,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:57,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:37:57,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:37:57,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:58,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:58,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:58,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:58,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 04:37:58,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 04:37:58,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:37:58,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:37:58,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:37:58,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:37:58,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:37:58,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:37:58,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:00,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:00,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:00,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:00,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:38:00,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:38:00,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:00,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:00,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:00,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:00,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:38:00,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:38:00,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:01,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:01,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:01,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:01,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:38:01,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:38:01,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:04,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:04,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:04,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:04,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:38:04,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:38:04,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:05,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:05,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:05,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:05,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:38:05,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:38:05,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:10,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:10,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:10,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:10,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:38:10,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:38:10,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:10,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:10,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:10,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:10,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:38:10,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:38:10,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:11,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:11,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:11,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:11,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:38:11,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:38:11,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:11,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:11,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:11,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:11,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:38:11,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:38:11,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:13,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:13,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:13,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:13,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:38:13,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:38:13,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:15,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:15,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:15,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:15,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:38:15,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:38:15,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:16,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:16,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:16,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:16,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:38:16,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:38:16,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:17,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:17,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:17,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:17,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:38:17,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:38:17,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:18,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:18,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:18,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:18,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:38:18,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:38:18,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:18,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:18,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:18,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:18,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:38:18,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:38:18,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:18,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:18,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:18,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:19,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:38:19,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:38:19,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:20,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:20,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:20,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:20,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:38:20,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:38:20,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:22,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:22,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:22,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:23,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:38:23,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:38:23,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:23,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:23,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:23,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:23,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:38:23,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:38:23,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:26,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:26,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:26,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:27,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:38:27,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:38:27,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:28,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:28,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:28,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:28,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:38:28,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:38:28,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:28,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:28,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:28,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:28,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:38:28,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:38:28,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:33,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:33,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:33,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:33,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:38:33,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:38:33,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:34,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:34,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:34,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:34,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:38:34,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:38:34,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:37,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:37,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:37,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:37,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:38:37,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:38:37,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:40,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:40,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:40,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:40,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:38:40,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:38:40,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:40,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:40,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:40,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:40,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:38:40,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:38:40,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:41,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:41,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:41,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:41,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:38:41,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:38:41,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:41,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:41,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:41,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:41,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:38:41,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:38:41,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:45,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:45,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:45,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:45,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:38:45,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:38:45,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:47,765 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:38:47,789 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:38:47,873 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.621
+2025-10-02 04:38:47,874 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:38:47,874 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:38:50,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:50,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:51,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:51,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:38:51,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:38:51,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:51,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:51,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:51,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:51,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:38:51,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:38:51,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:52,084 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:38:52,107 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:38:52,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.477
+2025-10-02 04:38:52,186 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:38:52,186 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:38:54,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:54,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:54,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:54,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:38:54,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:38:54,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:54,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:38:54,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:38:54,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:38:55,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:38:55,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:38:55,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:38:56,000 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:38:56,022 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:38:56,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.993
+2025-10-02 04:38:56,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:38:56,099 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:38:56,944 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:38:56,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:38:57,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:38:57,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s
+2025-10-02 04:38:57,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image)
+2025-10-02 04:38:57,247 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:39:01,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:01,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:01,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:01,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:39:01,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:39:01,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:02,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:02,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:02,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:02,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:39:02,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:39:02,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:08,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:08,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:08,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:08,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:39:08,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:39:08,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:10,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:10,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:10,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:10,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:39:10,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:39:10,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:16,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:16,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:16,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:16,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:39:16,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:39:16,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:17,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:17,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:17,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:17,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:39:17,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:39:17,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:20,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:20,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:20,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:21,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:39:21,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:39:21,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:22,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:22,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:22,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:23,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:39:23,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:39:23,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:25,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:25,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:25,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:25,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:39:25,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:39:25,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:27,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:27,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:27,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:27,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:39:27,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:39:27,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:28,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:28,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:28,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:28,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:39:28,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:39:28,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:29,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:29,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:29,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:29,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:39:29,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:39:29,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:31,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:31,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:31,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:31,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:39:31,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:39:31,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:31,464 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:39:31,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:39:31,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:39:31,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s
+2025-10-02 04:39:31,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image)
+2025-10-02 04:39:31,739 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:39:31,767 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:39:31,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:39:31,861 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.600
+2025-10-02 04:39:31,861 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:39:31,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:39:32,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:32,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:32,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:32,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:39:32,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:39:32,912 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:34,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:34,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:34,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:35,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:39:35,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:39:35,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:35,787 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:39:35,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:39:35,889 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.507
+2025-10-02 04:39:35,890 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:39:35,890 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:39:36,422 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:39:36,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:39:36,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:39:36,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s
+2025-10-02 04:39:36,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image)
+2025-10-02 04:39:36,697 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:39:37,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:37,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:37,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:37,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:39:37,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:39:37,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:38,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:38,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:38,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:38,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:39:38,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:39:38,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:39,118 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:39:39,134 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(680, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:39:39,210 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.873
+2025-10-02 04:39:39,211 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:39:39,211 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 04:39:39,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:39,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:39,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:39,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:39:39,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:39:39,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:41,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:41,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:41,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:41,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:39:41,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:39:41,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:44,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:44,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:44,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:44,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:39:44,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:39:44,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:45,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:45,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:45,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:45,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:39:45,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:39:45,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:46,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:46,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:46,310 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:46,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:39:46,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:39:46,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:46,772 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:39:46,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:39:46,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:39:47,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s
+2025-10-02 04:39:47,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image)
+2025-10-02 04:39:47,066 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:39:47,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:47,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:47,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:47,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 04:39:47,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 04:39:47,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:50,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:50,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:50,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:50,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:39:50,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:39:50,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:51,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:51,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:51,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:51,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:39:51,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:39:51,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:51,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:51,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:51,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:52,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:39:52,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:39:52,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:52,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:52,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:52,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:52,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:39:52,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:39:52,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:54,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:54,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:54,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:54,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:39:54,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:39:54,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:39:58,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:39:58,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:39:58,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:39:58,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:39:58,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:39:58,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:00,069 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:40:00,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:40:00,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:40:00,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s
+2025-10-02 04:40:00,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image)
+2025-10-02 04:40:00,373 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:40:04,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:04,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:04,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:04,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:40:04,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:40:04,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:05,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:05,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:05,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:05,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:40:05,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:40:05,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:07,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:07,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:07,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:07,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:40:07,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:40:07,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:10,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:10,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:10,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:10,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:40:10,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:40:10,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:12,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:12,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:12,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:12,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:40:12,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:40:12,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:13,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:40:13,077 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:40:13,161 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=148.468
+2025-10-02 04:40:13,161 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:40:13,161 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:40:14,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:14,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:14,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:14,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:40:14,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:40:14,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:15,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:15,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:15,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:15,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:40:15,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:40:15,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:16,178 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:40:16,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:40:16,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:40:16,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s
+2025-10-02 04:40:16,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image)
+2025-10-02 04:40:16,459 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:40:16,996 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:40:17,018 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:40:17,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.820
+2025-10-02 04:40:17,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:40:17,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:40:19,572 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:40:19,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:40:19,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:40:19,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s
+2025-10-02 04:40:19,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image)
+2025-10-02 04:40:19,866 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:40:20,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:20,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:20,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:20,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:40:20,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:40:20,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:21,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:21,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:21,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:21,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:40:21,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:40:21,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:21,746 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:40:21,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:40:21,842 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.357
+2025-10-02 04:40:21,843 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:40:21,843 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:40:23,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:23,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:23,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:23,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:40:23,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:40:23,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:26,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:26,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:26,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:27,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:40:27,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:40:27,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:34,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:34,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:34,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:34,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:40:34,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:40:34,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:38,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:38,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:38,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:38,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:40:38,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:40:38,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:42,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:42,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:42,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:42,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:40:42,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:40:42,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:45,237 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:40:45,261 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:40:45,337 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.711
+2025-10-02 04:40:45,337 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:40:45,337 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:40:50,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:50,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:50,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:50,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:40:50,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:40:50,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:51,121 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:40:51,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:40:51,217 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.866
+2025-10-02 04:40:51,218 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 04:40:51,218 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:40:54,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:54,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:54,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:54,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:40:54,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:40:54,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:55,804 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:40:55,834 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:40:55,913 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.841
+2025-10-02 04:40:55,914 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:40:55,914 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:40:58,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:40:58,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:40:58,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:40:58,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:40:58,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:40:58,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:40:59,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:40:59,811 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:40:59,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.148
+2025-10-02 04:40:59,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:40:59,886 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:41:01,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:01,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:01,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:01,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:41:01,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:41:01,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:01,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:01,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:01,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:01,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:41:01,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:41:01,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:02,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:02,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:02,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:03,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s
+2025-10-02 04:41:03,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image)
+2025-10-02 04:41:03,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:09,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:09,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:09,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:09,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:41:09,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:41:09,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:10,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:10,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:10,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:10,177 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:41:10,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:41:10,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:10,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:10,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:10,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:10,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:41:10,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:41:10,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:14,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:14,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:14,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:14,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:41:14,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:41:14,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:17,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:17,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:17,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:17,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:41:17,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:41:17,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:17,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:17,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:17,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:17,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:41:17,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:41:17,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:18,072 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:41:18,092 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:41:18,164 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.557
+2025-10-02 04:41:18,164 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s
+2025-10-02 04:41:18,164 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 04:41:18,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:18,797 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:18,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:18,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:41:18,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:41:18,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:20,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:20,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:20,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:21,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:41:21,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:41:21,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:23,185 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:41:23,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:41:23,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:41:23,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s
+2025-10-02 04:41:23,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image)
+2025-10-02 04:41:23,475 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:41:27,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:27,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:27,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:27,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:41:27,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:41:27,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:30,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:30,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:30,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:30,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:41:30,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:41:30,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:32,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:32,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:32,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:32,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:41:32,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:41:32,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:37,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:37,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:37,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:38,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:41:38,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:41:38,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:38,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:38,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:38,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:38,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:41:38,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:41:38,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:40,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:40,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:40,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:40,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:41:40,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:41:40,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:40,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:41:40,639 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:41:40,720 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.942
+2025-10-02 04:41:40,720 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:41:40,720 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 04:41:42,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:42,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:42,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:42,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:41:42,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:41:42,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:46,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:46,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:46,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:46,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:41:46,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:41:46,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:47,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:47,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:47,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:47,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:41:47,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:41:47,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:47,758 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:41:47,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:41:47,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.378
+2025-10-02 04:41:47,861 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:41:47,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:41:51,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:51,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:51,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:51,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:41:51,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:41:51,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:53,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:41:53,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:41:53,919 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.495
+2025-10-02 04:41:53,919 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:41:53,920 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:41:55,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:41:55,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:41:55,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:41:55,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:41:55,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:41:55,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:41:57,410 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:41:57,433 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:41:57,510 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.144
+2025-10-02 04:41:57,511 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:41:57,511 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 04:42:01,012 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:42:01,037 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:42:01,115 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=249.036
+2025-10-02 04:42:01,115 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 04:42:01,115 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 04:42:02,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:02,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:02,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:02,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:42:02,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:42:02,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:04,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:04,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:05,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:05,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 04:42:05,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 04:42:05,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:10,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:10,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:10,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:11,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:42:11,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:42:11,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:13,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:13,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:13,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:13,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 04:42:13,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 04:42:13,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:13,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:13,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:13,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:13,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:42:13,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:42:13,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:14,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:14,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:14,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:14,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:42:14,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:42:14,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:19,139 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:42:19,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:42:19,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:42:19,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s
+2025-10-02 04:42:19,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image)
+2025-10-02 04:42:19,425 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:42:22,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:22,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:22,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:22,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:42:22,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:42:22,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:26,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:26,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:26,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:26,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:42:26,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:42:26,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:27,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:27,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:27,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:27,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:42:27,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:42:27,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:32,231 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:42:32,254 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:42:32,341 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.176
+2025-10-02 04:42:32,341 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:42:32,341 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 04:42:32,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:32,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:32,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:33,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:42:33,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:42:33,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:35,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:35,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:35,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:35,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:42:35,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:42:35,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:36,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:36,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:36,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:36,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:42:36,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:42:36,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:37,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:37,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:37,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:37,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:42:37,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:42:37,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:37,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:37,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:37,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:37,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 04:42:37,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 04:42:37,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:41,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:41,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:41,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:41,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:42:41,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:42:41,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:41,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:41,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:41,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:42,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:42:42,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:42:42,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:43,296 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:42:43,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:42:43,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:42:43,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s
+2025-10-02 04:42:43,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image)
+2025-10-02 04:42:43,578 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:42:44,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:44,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:44,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:45,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:42:45,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:42:45,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:46,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:46,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:46,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:47,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:42:47,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:42:47,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:47,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:47,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:47,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:48,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:42:48,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:42:48,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:48,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:48,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:48,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:48,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:42:48,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:42:48,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:49,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:49,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:49,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:49,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:42:49,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:42:49,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:49,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:49,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:49,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:49,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 04:42:49,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 04:42:49,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:51,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:51,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:51,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:52,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:42:52,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:42:52,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:52,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:52,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:52,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:52,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 04:42:52,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 04:42:52,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:53,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:53,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:53,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:53,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s
+2025-10-02 04:42:53,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image)
+2025-10-02 04:42:53,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:54,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:54,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:54,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:54,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:42:54,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:42:54,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:54,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:54,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:54,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:54,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:42:54,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:42:54,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:56,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:42:56,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:42:56,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:42:56,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:42:56,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:42:56,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:42:57,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:42:57,861 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:42:57,947 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.012
+2025-10-02 04:42:57,947 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:42:57,949 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 04:43:00,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:00,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:00,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:00,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:43:00,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:43:00,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:01,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:01,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:01,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:01,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:43:01,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:43:01,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:01,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:01,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:01,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:02,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:43:02,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:43:02,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:02,365 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:43:02,387 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:43:02,476 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.975
+2025-10-02 04:43:02,476 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:43:02,477 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 04:43:02,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:02,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:02,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:02,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:43:02,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:43:02,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:02,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:02,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:03,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:03,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:43:03,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:43:03,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:03,173 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:43:03,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:43:03,273 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.641
+2025-10-02 04:43:03,273 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 04:43:03,274 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:43:04,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:04,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:04,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:04,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:43:04,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:43:04,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:06,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:06,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:06,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:07,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:43:07,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:43:07,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:07,075 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:43:07,097 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:43:07,181 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.702
+2025-10-02 04:43:07,182 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:43:07,182 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:43:08,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:08,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:08,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:08,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:43:08,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:43:08,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:11,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:11,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:11,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:11,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:43:11,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:43:11,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:13,145 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:43:13,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:43:13,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:43:13,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s
+2025-10-02 04:43:13,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image)
+2025-10-02 04:43:13,453 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:43:15,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:15,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:15,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:15,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:43:15,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:43:15,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:16,212 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:43:16,231 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:43:16,312 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.791
+2025-10-02 04:43:16,312 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:43:16,312 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:43:16,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:16,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:16,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:16,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:43:16,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:43:16,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:17,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:17,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:17,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:18,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:43:18,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:43:18,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:21,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:21,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:21,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:21,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:43:22,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:43:22,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:22,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:22,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:22,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:22,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:43:22,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:43:22,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:22,890 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:22,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:22,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:23,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:43:23,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:43:23,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:23,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:23,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:23,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:23,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:43:23,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:43:23,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:23,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:23,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:23,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:23,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:43:23,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:43:23,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:25,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:25,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:25,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:25,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:43:25,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:43:25,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:30,649 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:43:30,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:43:30,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:43:30,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s
+2025-10-02 04:43:30,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image)
+2025-10-02 04:43:30,951 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:43:31,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:31,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:31,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:31,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:43:31,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:43:31,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:34,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:34,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:34,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:34,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:43:34,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:43:34,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:38,219 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:43:38,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:43:38,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:43:38,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s
+2025-10-02 04:43:38,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image)
+2025-10-02 04:43:38,504 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:43:41,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:41,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:41,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:41,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:43:41,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:43:41,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:44,690 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:43:44,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:43:44,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:43:44,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s
+2025-10-02 04:43:44,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image)
+2025-10-02 04:43:44,989 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:43:45,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:45,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:45,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:45,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:43:45,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:43:45,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:46,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:46,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:46,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:46,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:43:46,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:43:46,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:46,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:46,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:46,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:47,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:43:47,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:43:47,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:47,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:47,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:47,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:47,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:43:47,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:43:47,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:48,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:48,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:48,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:48,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:43:48,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:43:48,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:50,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:50,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:51,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:51,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:43:51,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:43:51,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:52,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:52,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:52,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:52,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:43:52,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:43:52,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:53,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:53,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:53,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:53,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:43:53,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:43:53,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:57,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:57,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:57,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:58,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:43:58,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:43:58,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:58,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:58,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:58,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:58,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:43:58,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:43:58,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:58,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:58,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:58,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:58,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:43:58,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:43:58,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:43:59,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:43:59,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:43:59,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:43:59,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:43:59,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:43:59,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:00,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:00,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:00,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:00,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:44:00,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:44:00,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:01,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:01,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:01,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:01,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:44:01,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:44:01,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:03,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:03,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:03,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:03,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:44:03,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:44:03,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:07,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:07,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:07,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:07,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:44:07,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:44:07,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:07,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:07,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:07,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:07,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:44:07,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:44:07,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:08,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:08,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:09,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:09,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:44:09,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:44:09,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:12,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:12,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:13,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:13,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:44:13,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:44:13,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:13,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:13,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:13,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:13,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:44:13,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:44:13,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:15,256 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:44:15,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:44:15,360 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.832
+2025-10-02 04:44:15,361 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 04:44:15,361 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:44:17,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:17,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:17,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:17,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:44:17,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:44:17,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:18,756 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:44:18,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:44:18,868 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.749
+2025-10-02 04:44:18,868 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:44:18,869 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:44:19,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:19,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:19,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:19,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:44:19,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:44:19,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:20,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:20,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:20,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:20,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:44:20,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:44:20,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:21,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:21,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:21,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:21,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:44:21,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:44:21,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:22,909 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:44:22,929 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:44:23,008 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.213
+2025-10-02 04:44:23,008 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:44:23,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 04:44:23,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:23,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:23,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:23,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:44:23,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:44:23,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:25,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:25,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:25,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:25,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:44:25,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:44:25,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:26,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:26,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:26,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:26,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:44:26,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:44:26,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:27,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:27,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:27,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:27,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:44:27,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:44:27,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:27,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:27,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:27,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:28,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:44:28,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:44:28,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:29,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:29,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:29,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:29,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:44:29,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:44:29,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:30,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:30,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:30,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:30,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:44:30,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:44:30,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:32,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:32,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:32,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:32,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:44:32,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:44:32,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:33,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:33,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:33,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:33,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:44:33,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:44:33,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:33,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:33,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:34,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:34,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:44:34,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:44:34,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:39,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:39,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:39,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:39,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:44:39,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:44:39,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:39,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:39,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:39,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:39,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:44:39,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:44:39,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:43,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:43,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:43,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:43,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:44:43,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:44:43,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:43,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:43,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:43,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:43,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:44:43,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:44:43,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:44,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:44,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:44,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:44,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:44:44,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:44:44,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:46,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:46,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:46,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:46,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:44:46,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:44:46,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:46,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:46,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:46,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:46,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:44:46,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:44:46,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:47,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:47,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:47,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:47,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:44:47,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:44:47,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:47,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:47,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:48,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:48,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:44:48,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:44:48,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:48,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:48,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:48,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:49,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:44:49,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:44:49,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:50,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:50,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:50,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:50,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:44:50,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:44:50,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:50,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:50,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:50,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:50,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:44:50,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:44:50,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:51,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:51,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:51,058 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:51,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:44:51,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:44:51,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:52,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:52,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:52,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:52,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:44:52,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:44:52,952 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:53,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:53,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:53,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:54,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:44:54,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:44:54,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:54,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:54,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:54,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:54,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:44:54,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:44:54,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:56,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:56,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:56,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:56,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:44:56,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:44:56,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:44:58,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:44:58,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:44:58,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:44:59,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 04:44:59,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 04:44:59,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:00,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:00,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:00,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:00,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:45:00,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:45:00,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:00,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:00,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:00,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:00,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:45:00,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:45:00,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:01,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:01,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:01,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:02,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:45:02,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:45:02,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:03,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:03,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:03,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:03,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:45:03,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:45:03,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:04,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:04,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:04,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:04,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:45:04,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:45:04,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:07,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:07,722 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:07,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:07,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:45:07,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:45:07,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:09,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:09,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:09,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:09,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:45:09,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:45:09,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:11,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:11,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:11,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:11,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:45:11,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:45:11,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:11,972 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:11,995 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:12,085 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=126.718
+2025-10-02 04:45:12,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 04:45:12,086 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:45:13,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:13,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:13,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:13,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:45:13,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:45:13,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:13,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:13,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:13,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:13,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:45:13,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:45:13,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:14,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:14,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:14,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:14,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:45:14,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:45:14,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:15,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:15,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:15,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:15,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:45:15,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:45:15,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:16,494 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:16,525 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:16,613 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.506
+2025-10-02 04:45:16,614 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:45:16,616 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:45:16,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:16,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:17,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:17,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:45:17,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:45:17,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:18,460 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:18,481 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:18,569 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.577
+2025-10-02 04:45:18,569 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:45:18,569 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:45:18,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:18,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:18,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:19,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:45:19,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:45:19,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:19,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:19,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:19,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:19,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:45:19,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:45:19,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:20,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:20,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:20,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:20,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:45:20,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:45:20,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:23,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:23,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:23,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:23,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:45:23,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:45:23,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:24,347 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:24,369 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:24,458 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.826
+2025-10-02 04:45:24,458 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:45:24,459 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 04:45:26,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:26,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:26,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:26,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:45:26,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:45:26,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:26,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:26,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:26,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:26,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:45:26,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:45:26,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:27,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:28,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:28,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:28,153 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:45:28,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:45:28,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:29,842 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:29,864 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:29,952 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.878
+2025-10-02 04:45:29,952 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:45:29,953 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:45:31,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:31,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:31,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:31,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:45:31,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:45:31,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:32,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:32,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:32,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:32,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:45:32,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:45:32,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:34,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:34,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:34,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:35,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:45:35,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:45:35,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:35,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:35,171 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:35,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.089
+2025-10-02 04:45:35,265 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 04:45:35,266 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 04:45:35,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:35,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:35,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:36,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:45:36,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:45:36,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:37,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:37,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:37,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:37,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:45:37,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:45:37,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:39,146 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:39,174 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:39,262 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.011
+2025-10-02 04:45:39,263 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:45:39,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 04:45:39,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:39,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:39,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:40,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:45:40,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:45:40,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:40,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:40,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:40,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:40,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:45:40,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:45:40,980 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:41,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:41,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:41,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:41,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:45:41,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:45:41,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:42,889 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:42,911 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:43,005 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.187
+2025-10-02 04:45:43,005 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s
+2025-10-02 04:45:43,007 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s
+2025-10-02 04:45:51,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:51,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:51,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:51,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:45:51,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:45:51,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:52,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:52,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:52,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:52,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:45:52,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:45:52,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:55,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:55,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:55,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:55,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:45:55,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:45:55,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:55,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:55,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:55,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:55,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:45:55,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:45:55,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:55,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:55,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:55,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:56,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:45:56,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:45:56,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:45:56,385 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:45:56,418 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:45:56,517 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.029
+2025-10-02 04:45:56,517 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s
+2025-10-02 04:45:56,519 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s
+2025-10-02 04:45:59,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:45:59,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:45:59,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:45:59,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:45:59,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:45:59,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:00,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:00,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:00,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:01,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:46:01,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:46:01,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:02,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:02,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:02,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:02,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:46:02,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:46:02,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:02,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:02,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:02,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:03,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:46:03,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:46:03,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:05,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:05,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:05,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:05,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:46:05,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:46:05,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:07,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:07,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:07,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:08,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:46:08,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:46:08,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:08,056 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:46:08,075 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:46:08,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.696
+2025-10-02 04:46:08,172 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s
+2025-10-02 04:46:08,174 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s
+2025-10-02 04:46:08,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:08,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:08,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:08,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:46:08,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:46:08,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:08,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:08,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:08,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:08,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:46:08,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:46:08,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:09,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:09,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:09,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:10,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:46:10,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:46:10,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:11,467 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:46:11,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:46:11,582 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=164.789
+2025-10-02 04:46:11,582 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:46:11,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:46:15,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:15,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:15,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:16,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:46:16,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:46:16,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:17,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:17,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:17,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:17,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:46:17,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:46:17,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:19,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:19,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:19,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:19,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:46:19,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:46:19,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:20,605 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:46:20,647 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:46:20,739 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.374
+2025-10-02 04:46:20,739 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 04:46:20,739 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 04:46:22,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:22,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:22,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:22,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.208s
+2025-10-02 04:46:22,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image)
+2025-10-02 04:46:22,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:22,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:22,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:22,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:22,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:46:22,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:46:22,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:25,895 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:46:25,936 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:46:26,025 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=177.032
+2025-10-02 04:46:26,026 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 04:46:26,026 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 04:46:28,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:28,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:28,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:28,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 04:46:28,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 04:46:28,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:28,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:28,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:29,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:29,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:46:29,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:46:29,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:30,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:30,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:30,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:30,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:46:30,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:46:30,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:32,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:32,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:32,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:32,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:46:32,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:46:32,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:36,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:36,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:36,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:36,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:46:36,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:46:36,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:36,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:36,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:36,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:37,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:46:37,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:46:37,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:37,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:37,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:37,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:37,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:46:37,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:46:37,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:38,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:38,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:38,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:38,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:46:38,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:46:38,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:40,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:40,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:40,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:40,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:46:40,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:46:40,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:42,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:42,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:42,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:42,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:46:42,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:46:42,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:42,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:42,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:43,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:43,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:46:43,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:46:43,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:46,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:46,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:46,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:46,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:46:46,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:46:46,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:46,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:46,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:46,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:46,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:46:46,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:46:46,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:46,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:46,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:46,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:47,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:46:47,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:46:47,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:47,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:47,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:47,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:47,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:46:47,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:46:47,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:47,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:47,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:47,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:47,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:46:47,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:46:47,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:51,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:51,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:51,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:51,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:46:51,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:46:51,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:51,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:51,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:51,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:51,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:46:51,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:46:51,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:52,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:52,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:52,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:53,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:46:53,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:46:53,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:55,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:55,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:55,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:55,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:46:55,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:46:55,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:56,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:46:56,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:46:56,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:46:56,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:46:56,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:46:56,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:46:56,436 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:46:56,460 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:46:56,540 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.610
+2025-10-02 04:46:56,541 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:46:56,541 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:47:00,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:00,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:00,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:00,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:47:00,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:47:00,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:00,799 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:47:00,834 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:47:00,923 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=175.635
+2025-10-02 04:47:00,924 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:47:00,925 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:47:01,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:01,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:01,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:01,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:47:01,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:47:01,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:01,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:01,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:01,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:02,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:47:02,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:47:02,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:04,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:04,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:04,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:04,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:47:04,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:47:04,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:04,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:47:04,943 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:47:05,029 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=185.327
+2025-10-02 04:47:05,029 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:47:05,030 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 04:47:06,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:06,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:06,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:06,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:47:06,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:47:06,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:07,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:07,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:07,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:07,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:47:07,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:47:07,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:08,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:08,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:08,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:08,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:47:08,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:47:08,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:08,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:08,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:08,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:08,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:47:08,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:47:08,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:10,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:10,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:10,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:10,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 04:47:10,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 04:47:10,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:11,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:11,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:11,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:11,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:47:11,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:47:11,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:11,866 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:47:11,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:47:11,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:47:12,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.332s
+2025-10-02 04:47:12,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.332s (avg: 0.166s/image)
+2025-10-02 04:47:12,199 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:47:16,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:16,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:16,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:16,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:47:16,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:47:16,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:17,568 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:47:17,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:47:17,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:47:17,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s
+2025-10-02 04:47:17,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image)
+2025-10-02 04:47:17,866 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:47:18,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:18,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:18,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:18,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:47:18,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:47:18,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:20,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:20,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:20,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:20,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:47:20,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:47:20,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:20,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:20,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:20,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:20,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:47:20,811 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:47:20,811 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:23,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:23,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:23,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:23,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:47:23,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:47:23,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:24,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:24,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:24,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:24,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:47:24,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:47:24,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:24,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:24,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:24,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:24,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:47:24,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:47:24,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:27,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:27,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:27,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:27,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:47:27,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:47:27,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:29,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:29,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:29,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:29,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:47:29,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:47:29,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:30,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:30,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:30,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:30,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 04:47:30,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 04:47:30,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:30,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:30,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:30,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:30,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:47:30,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:47:30,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:31,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:31,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:31,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:31,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:47:31,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:47:31,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:33,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:33,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:33,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:33,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:47:33,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:47:33,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:33,317 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:47:33,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:47:33,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:47:33,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s
+2025-10-02 04:47:33,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image)
+2025-10-02 04:47:33,596 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:47:34,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:34,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:34,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:34,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:47:34,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:47:34,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:35,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:35,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:35,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:35,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:47:35,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:47:35,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:37,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:37,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:37,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:37,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:47:37,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:47:37,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:37,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:37,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:37,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:37,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:47:37,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:47:37,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:40,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:40,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:40,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:41,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:47:41,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:47:41,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:41,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:41,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:41,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:41,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:47:41,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:47:41,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:41,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:41,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:41,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:42,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:47:42,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:47:42,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:43,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:43,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:43,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:43,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 04:47:43,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 04:47:43,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:43,945 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:47:43,965 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:47:44,047 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.051
+2025-10-02 04:47:44,048 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 04:47:44,048 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:47:47,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:47,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:47,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:47,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:47:47,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:47:47,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:47,877 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:47:47,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:47:47,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:47:48,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s
+2025-10-02 04:47:48,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image)
+2025-10-02 04:47:48,147 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:47:48,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:48,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:48,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:48,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:47:48,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:47:48,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:48,617 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:47:48,633 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:47:48,707 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.578
+2025-10-02 04:47:48,708 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:47:48,708 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:47:51,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:51,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:51,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:52,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:47:52,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:47:52,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:52,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:52,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:52,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:52,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:47:52,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:47:52,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:54,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:54,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:54,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:54,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:47:54,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:47:54,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:55,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:55,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:55,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:55,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 04:47:55,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 04:47:55,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:56,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:56,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:56,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:56,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:47:56,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:47:56,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:59,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:59,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:59,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:47:59,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:47:59,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:47:59,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:47:59,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:47:59,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:47:59,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:00,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:48:00,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:48:00,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:01,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:01,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:01,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:01,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:48:01,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:48:01,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:02,873 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:02,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:02,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:03,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:48:03,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:48:03,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:05,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:05,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:05,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:05,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:48:05,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:48:05,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:07,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:07,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:07,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:07,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:48:07,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:48:07,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:10,132 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:48:10,156 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:48:10,238 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.561
+2025-10-02 04:48:10,239 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 04:48:10,239 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:48:10,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:10,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:10,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:10,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:48:10,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:48:10,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:11,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:11,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:11,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:11,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:48:11,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:48:11,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:11,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:11,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:11,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:12,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:48:12,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:48:12,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:17,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:17,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:17,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:17,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:48:17,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:48:17,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:18,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:18,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:18,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:18,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:48:18,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:48:18,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:24,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:24,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:24,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:25,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:48:25,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:48:25,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:39,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:39,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:39,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:39,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:48:39,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:48:39,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:43,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:43,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:43,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:43,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:48:43,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:48:43,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:48,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:48,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:48,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:48,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:48:48,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:48:48,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:48,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:48,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:48,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:48,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:48:48,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:48:48,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:53,378 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:53,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:53,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:53,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:48:53,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:48:53,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:54,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:54,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:54,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:54,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:48:54,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:48:54,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:54,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:54,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:55,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:55,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:48:55,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:48:55,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:48:55,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:48:55,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:48:55,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:48:55,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:48:55,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:48:55,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:00,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:00,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:00,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:00,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:49:00,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:49:00,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:00,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:00,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:00,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:01,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:49:01,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:49:01,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:05,236 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:05,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:05,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:05,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:49:05,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:49:05,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:06,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:06,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:06,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:06,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:49:06,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:49:06,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:06,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:06,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:06,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:06,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 04:49:06,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 04:49:06,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:09,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:09,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:09,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:09,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:49:09,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:49:09,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:11,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:11,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:11,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:11,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:49:11,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:49:11,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:11,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:11,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:11,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:12,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:49:12,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:49:12,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:12,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:12,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:12,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:13,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 04:49:13,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 04:49:13,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:16,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:16,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:16,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:16,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:49:16,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:49:16,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:17,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:17,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:17,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:17,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:49:17,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:49:17,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:18,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:18,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:18,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:18,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 04:49:18,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 04:49:18,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:18,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:18,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:18,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:18,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:49:18,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:49:18,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:22,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:22,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:22,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:22,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:49:22,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:49:22,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:22,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:22,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:22,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:22,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:49:22,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:49:22,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:24,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:24,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:24,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:24,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:49:24,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:49:24,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:27,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:27,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:27,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:27,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:49:27,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:49:27,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:28,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:28,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:28,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:28,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:49:28,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:49:28,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:32,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:32,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:32,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:32,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:49:32,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:49:32,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:32,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:32,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:32,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:32,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:49:32,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:49:32,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:33,487 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:49:33,502 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:49:33,576 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.270
+2025-10-02 04:49:33,577 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:49:33,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:49:33,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:33,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:33,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:33,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:49:33,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:49:33,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:34,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:34,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:34,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:34,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:49:34,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:49:34,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:38,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:38,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:38,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:38,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:49:38,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:49:38,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:46,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:46,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:46,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:46,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:49:46,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:49:46,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:50,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:50,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:50,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:51,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:49:51,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:49:51,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:52,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:52,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:52,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:53,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:49:53,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:49:53,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:54,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:54,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:54,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:54,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:49:54,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:49:54,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:58,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:58,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:58,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:58,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:49:58,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:49:58,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:49:59,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:49:59,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:49:59,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:49:59,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:49:59,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:49:59,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:00,379 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:50:00,403 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:50:00,482 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.163
+2025-10-02 04:50:00,482 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:50:00,482 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:50:04,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:04,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:04,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:04,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:50:04,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:50:04,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:05,670 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:50:05,693 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:50:05,767 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.787
+2025-10-02 04:50:05,767 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:50:05,767 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:50:08,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:08,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:08,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:08,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:50:08,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:50:08,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:08,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:08,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:08,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:08,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:50:08,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:50:08,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:09,446 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:50:09,470 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:50:09,545 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.888
+2025-10-02 04:50:09,545 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 04:50:09,545 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 04:50:13,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:13,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:13,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:13,209 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:50:13,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:50:13,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:14,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:14,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:14,636 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:14,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:50:14,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:50:14,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:16,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:16,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:16,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:16,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:50:16,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:50:16,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:17,532 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:50:17,563 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:50:17,653 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=154.840
+2025-10-02 04:50:17,654 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 04:50:17,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:50:22,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:22,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:22,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:22,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:50:22,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:50:22,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:25,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:25,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:25,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:25,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s
+2025-10-02 04:50:25,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image)
+2025-10-02 04:50:25,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:27,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:27,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:27,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:27,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:50:27,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:50:27,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:27,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:27,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:27,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:27,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:50:27,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:50:27,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:30,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:30,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:30,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:30,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s
+2025-10-02 04:50:30,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image)
+2025-10-02 04:50:30,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:31,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:31,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:31,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:31,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:50:31,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:50:31,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:36,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:36,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:36,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:36,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:50:36,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:50:36,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:44,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:50:44,617 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:50:44,702 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.885
+2025-10-02 04:50:44,702 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:50:44,704 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 04:50:46,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:46,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:46,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:46,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:50:46,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:50:46,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:48,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:48,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:48,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:48,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:50:48,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:50:48,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:49,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:50:49,209 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:50:49,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.926
+2025-10-02 04:50:49,301 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 04:50:49,302 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:50:52,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:50:52,790 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:50:52,882 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.296
+2025-10-02 04:50:52,883 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 04:50:52,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 04:50:53,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:53,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:53,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:54,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:50:54,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:50:54,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:54,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:54,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:54,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:54,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:50:54,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:50:54,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:58,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:58,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:58,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:58,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:50:58,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:50:58,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:50:59,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:50:59,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:50:59,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:50:59,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:50:59,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:50:59,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:00,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:00,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:00,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:00,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:51:00,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:51:00,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:00,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:00,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:00,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:00,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:51:00,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:51:00,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:00,695 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:51:00,710 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:51:00,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.372
+2025-10-02 04:51:00,783 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:51:00,783 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:51:02,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:51:02,103 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:51:02,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.119
+2025-10-02 04:51:02,177 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:51:02,177 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:51:04,234 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:51:04,258 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:51:04,332 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.102
+2025-10-02 04:51:04,332 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:51:04,332 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 04:51:06,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:06,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:06,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:06,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:51:06,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:51:06,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:10,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:10,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:10,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:10,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:51:10,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:51:10,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:11,012 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:51:11,032 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:51:11,111 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.582
+2025-10-02 04:51:11,111 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:51:11,112 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:51:11,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:11,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:11,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:11,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:51:11,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:51:11,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:11,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:11,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:11,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:11,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:51:11,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:51:11,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:14,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:51:14,390 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(815, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:51:14,469 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.654
+2025-10-02 04:51:14,469 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:51:14,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 04:51:19,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:19,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:19,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:19,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:51:19,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:51:19,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:20,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:20,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:20,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:20,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:51:20,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:51:20,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:26,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:26,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:26,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:26,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:51:26,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:51:26,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:28,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:28,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:28,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:28,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 04:51:28,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 04:51:28,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:29,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:29,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:29,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:29,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:51:29,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:51:29,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:29,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:29,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:29,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:29,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:51:29,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:51:29,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:34,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:34,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:34,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:34,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:51:34,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:51:34,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:38,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:38,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:38,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:38,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:51:38,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:51:38,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:39,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:39,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:39,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:40,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:51:40,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:51:40,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:40,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:40,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:40,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:40,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:51:40,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:51:40,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:44,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:44,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:44,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:44,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:51:44,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:51:44,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:46,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:46,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:46,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:46,340 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 04:51:46,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 04:51:46,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:46,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:46,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:46,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:47,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:51:47,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:51:47,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:47,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:47,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:47,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:47,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:51:47,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:51:47,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:47,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:47,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:47,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:48,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:51:48,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:51:48,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:51,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:51,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:51,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:51,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:51:51,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:51:51,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:52,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:52,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:52,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:52,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:51:52,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:51:52,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:53,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:53,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:53,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:53,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:51:53,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:51:53,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:55,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:55,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:55,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:55,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:51:55,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:51:55,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:56,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:56,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:56,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:56,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:51:56,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:51:56,251 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:56,339 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:51:56,352 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:51:56,438 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.916
+2025-10-02 04:51:56,439 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:51:56,439 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 04:51:57,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:57,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:57,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:57,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:51:57,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:51:57,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:58,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:51:58,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:51:58,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:51:58,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:51:58,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:51:58,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:51:59,441 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:51:59,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:51:59,534 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.471
+2025-10-02 04:51:59,534 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 04:51:59,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 04:52:00,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:00,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:00,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:00,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:52:00,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:52:00,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:03,895 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:52:03,931 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:52:04,009 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.469
+2025-10-02 04:52:04,009 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 04:52:04,009 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 04:52:04,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:04,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:05,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:05,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:52:05,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:52:05,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:06,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:06,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:06,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:06,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:52:06,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:52:06,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:07,191 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:52:07,211 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:52:07,284 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.299
+2025-10-02 04:52:07,284 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 04:52:07,284 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 04:52:07,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:07,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:07,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:07,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:52:07,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:52:07,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:08,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:08,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:08,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:08,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:52:08,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:52:08,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:11,102 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:52:11,132 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:52:11,230 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.502
+2025-10-02 04:52:11,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s
+2025-10-02 04:52:11,232 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s
+2025-10-02 04:52:14,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:14,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:14,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:14,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:52:14,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:52:14,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:16,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:16,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:16,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:16,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:52:16,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:52:16,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:17,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:17,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:17,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:17,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:52:17,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:52:17,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:19,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:19,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:19,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:19,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:52:19,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:52:19,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:19,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:19,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:19,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:19,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:52:19,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:52:19,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:20,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:20,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:20,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:20,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:52:20,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:52:20,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:21,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:21,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:21,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:21,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:52:21,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:52:21,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:23,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:23,940 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:23,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:24,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:52:24,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:52:24,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:28,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:28,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:28,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:28,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:52:28,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:52:28,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:34,241 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:52:34,242 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:52:34,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:52:34,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s
+2025-10-02 04:52:34,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image)
+2025-10-02 04:52:34,527 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:52:34,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:34,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:34,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:35,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:52:35,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:52:35,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:39,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:39,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:39,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:39,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:52:39,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:52:39,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:40,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:40,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:40,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:40,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:52:40,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:52:40,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:44,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:44,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:44,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:44,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:52:44,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:52:44,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:44,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:44,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:44,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:45,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:52:45,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:52:45,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:45,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:45,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:45,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:45,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:52:45,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:52:45,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:47,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:47,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:47,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:47,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:52:47,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:52:47,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:48,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:48,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:48,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:49,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:52:49,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:52:49,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:50,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:50,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:50,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:50,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:52:50,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:52:50,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:53,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:53,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:53,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:53,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:52:53,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:52:53,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:53,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:53,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:53,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:53,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:52:53,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:52:53,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:54,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:54,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:54,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:54,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:52:54,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:52:54,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:55,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:52:55,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:52:55,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:52:55,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:52:55,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:52:55,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:52:59,889 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:52:59,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:52:59,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:53:00,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s
+2025-10-02 04:53:00,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image)
+2025-10-02 04:53:00,171 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:53:00,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:00,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:00,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:01,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:53:01,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:53:01,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:02,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:02,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:02,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:02,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:53:02,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:53:02,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:03,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:03,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:03,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:03,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:53:03,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:53:03,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:04,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:04,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:04,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:05,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:53:05,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:53:05,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:05,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:05,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:05,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:05,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:53:05,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:53:05,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:06,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:06,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:06,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:06,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:53:06,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:53:06,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:06,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:06,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:06,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:06,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:53:06,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:53:06,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:08,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:08,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:08,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:08,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:53:08,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:53:08,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:09,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:09,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:09,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:10,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:53:10,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:53:10,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:11,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:11,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:11,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:11,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:53:11,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:53:11,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:11,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:11,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:11,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:11,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:53:11,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:53:11,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:14,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:14,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:14,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:14,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:53:14,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:53:14,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:15,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:15,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:15,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:15,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:53:15,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:53:15,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:16,603 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:53:16,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:53:16,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:53:16,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s
+2025-10-02 04:53:16,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image)
+2025-10-02 04:53:16,904 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:53:20,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:20,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:20,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:20,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:53:20,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:53:20,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:20,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:20,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:20,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:20,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:53:20,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:53:20,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:21,202 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:53:21,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:53:21,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:53:21,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s
+2025-10-02 04:53:21,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image)
+2025-10-02 04:53:21,495 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:53:24,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:24,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:24,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:24,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:53:24,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:53:24,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:25,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:25,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:25,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:25,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:53:25,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:53:25,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:29,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:29,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:29,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:29,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:53:29,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:53:29,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:29,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:29,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:30,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:30,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:53:30,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:53:30,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:31,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:31,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:31,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:31,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:53:31,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:53:31,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:33,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:33,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:33,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:33,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:53:33,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:53:33,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:35,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:35,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:35,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:35,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:53:35,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:53:35,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:41,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:41,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:41,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:41,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:53:41,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:53:41,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:47,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:47,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:47,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:47,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:53:47,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:53:47,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:52,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:52,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:52,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:53,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:53:53,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:53:53,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:53:56,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:53:56,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:53:56,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:53:56,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:53:56,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:53:56,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:01,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:01,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:01,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:01,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:54:01,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:54:01,178 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:07,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:07,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:07,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:07,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:54:07,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:54:07,549 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:07,588 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:07,612 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:07,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.239
+2025-10-02 04:54:07,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 04:54:07,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 04:54:07,916 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:07,933 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:08,002 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.953
+2025-10-02 04:54:08,002 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s
+2025-10-02 04:54:08,002 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s
+2025-10-02 04:54:11,143 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:11,161 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:11,233 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.121
+2025-10-02 04:54:11,233 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 04:54:11,233 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 04:54:13,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:13,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:13,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:13,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:54:13,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:54:13,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:14,417 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:14,456 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:14,543 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.877
+2025-10-02 04:54:14,544 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:54:14,546 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 04:54:14,576 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:14,593 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:14,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.167
+2025-10-02 04:54:14,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:54:14,672 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 04:54:17,166 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:17,187 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:17,265 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.039
+2025-10-02 04:54:17,266 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 04:54:17,266 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 04:54:18,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:18,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:18,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:19,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:54:19,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:54:19,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:19,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:19,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:19,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:19,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:54:19,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:54:19,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:20,227 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:20,256 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:20,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.504
+2025-10-02 04:54:20,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 04:54:20,338 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 04:54:24,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:24,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:24,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:24,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:54:24,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:54:24,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:27,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:27,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:27,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:28,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:54:28,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:54:28,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:30,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:30,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:30,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:30,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:54:30,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:54:30,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:34,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:34,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:34,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:34,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:54:34,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:54:34,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:35,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:35,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:35,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:35,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:54:35,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:54:35,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:36,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:36,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:36,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:37,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:54:37,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:54:37,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:40,117 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:40,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:40,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.999
+2025-10-02 04:54:40,225 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:54:40,225 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:54:40,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:40,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:40,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:40,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:54:40,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:54:40,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:44,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:44,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:44,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:44,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:54:44,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:54:44,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:44,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:44,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:44,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:45,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:54:45,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:54:45,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:46,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:46,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:46,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:46,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:54:46,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:54:46,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:47,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:47,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:47,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:47,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:54:47,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:54:47,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:48,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:48,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:48,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:48,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:54:48,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:54:48,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:49,840 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:54:49,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:54:49,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:54:50,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.260s
+2025-10-02 04:54:50,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.260s (avg: 0.130s/image)
+2025-10-02 04:54:50,102 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:54:50,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:50,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:50,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:50,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:54:50,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:54:50,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:51,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:51,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:51,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:51,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:54:51,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:54:51,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:53,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:53,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:53,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:53,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:54:53,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:54:53,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:53,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:53,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:53,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:53,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:54:53,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:54:53,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:54,814 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:54,834 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:54,919 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.990
+2025-10-02 04:54:54,919 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 04:54:54,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 04:54:56,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:54:56,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:54:56,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:54:56,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:54:56,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:54:56,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:54:58,671 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:54:58,693 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:54:58,781 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.786
+2025-10-02 04:54:58,781 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 04:54:58,781 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 04:55:00,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:00,823 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:00,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:00,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:55:00,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:55:00,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:01,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:01,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:01,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:01,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:55:01,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:55:01,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:01,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:01,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:01,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:01,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:55:01,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:55:01,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:02,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:02,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:02,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:02,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:55:02,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:55:02,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:02,420 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:55:02,436 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:55:02,515 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.402
+2025-10-02 04:55:02,516 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 04:55:02,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 04:55:07,670 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:55:07,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:55:07,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:55:07,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s
+2025-10-02 04:55:07,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image)
+2025-10-02 04:55:07,944 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:55:08,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:08,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:08,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:08,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:55:08,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:55:08,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:08,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:08,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:08,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:08,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:55:08,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:55:08,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:09,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:09,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:09,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:10,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:55:10,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:55:10,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:14,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:14,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:14,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:14,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:55:14,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:55:14,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:14,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:14,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:14,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:15,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:55:15,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:55:15,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:15,423 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:55:15,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:55:15,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:55:15,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s
+2025-10-02 04:55:15,705 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image)
+2025-10-02 04:55:15,706 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:55:17,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:17,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:17,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:18,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:55:18,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:55:18,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:21,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:21,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:21,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:21,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:55:21,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:55:21,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:22,069 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:55:22,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:55:22,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:55:22,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s
+2025-10-02 04:55:22,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image)
+2025-10-02 04:55:22,333 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:55:23,642 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:55:23,664 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:55:23,744 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.556
+2025-10-02 04:55:23,745 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 04:55:23,745 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 04:55:25,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:25,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:25,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:25,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:55:25,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:55:25,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:26,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:26,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:26,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:26,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:55:26,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:55:26,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:27,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:27,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:27,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:27,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:55:27,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:55:27,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:31,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:31,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:31,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:31,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:55:31,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:55:31,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:31,367 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:31,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:31,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:31,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:55:31,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:55:31,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:32,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:32,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:32,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:32,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 04:55:32,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 04:55:32,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:34,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:34,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:34,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:34,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:55:34,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:55:34,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:36,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:36,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:36,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:36,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:55:36,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:55:36,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:38,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:38,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:38,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:38,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:55:38,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:55:38,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:38,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:38,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:38,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:38,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:55:38,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:55:38,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:38,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:38,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:38,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:39,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:55:39,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:55:39,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:39,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:39,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:39,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:39,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:55:39,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:55:39,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:40,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:40,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:40,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:40,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:55:40,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:55:40,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:43,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:43,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:43,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:43,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:55:43,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:55:43,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:44,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:44,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:44,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:44,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:55:44,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:55:44,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:47,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:47,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:47,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:47,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:55:47,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:55:47,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:49,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:49,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:49,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:49,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:55:49,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:55:49,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:51,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:51,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:51,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:51,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 04:55:51,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 04:55:51,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:51,761 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:55:51,789 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:55:51,894 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.188
+2025-10-02 04:55:51,894 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s
+2025-10-02 04:55:51,895 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s
+2025-10-02 04:55:51,932 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:55:51,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:55:51,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:55:52,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s
+2025-10-02 04:55:52,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image)
+2025-10-02 04:55:52,204 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:55:56,912 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:56,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:56,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:57,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:55:57,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:55:57,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:55:57,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:55:57,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:55:57,302 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=212.039
+2025-10-02 04:55:57,303 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:55:57,303 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:55:58,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:55:58,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:55:58,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:55:58,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:55:58,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:55:58,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:01,035 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:56:01,056 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:56:01,133 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.791
+2025-10-02 04:56:01,134 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 04:56:01,134 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 04:56:01,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:01,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:01,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:01,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:56:01,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:56:01,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:03,562 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:56:03,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:56:03,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:56:03,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s
+2025-10-02 04:56:03,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image)
+2025-10-02 04:56:03,861 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:56:06,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:06,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:06,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:06,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 04:56:06,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 04:56:06,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:11,465 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:56:11,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:56:11,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:56:11,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 04:56:11,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image)
+2025-10-02 04:56:11,750 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:56:11,935 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:56:11,961 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:56:12,050 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.789
+2025-10-02 04:56:12,050 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:56:12,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:56:15,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:15,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:15,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:15,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 04:56:15,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 04:56:15,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:16,224 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:56:16,250 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:56:16,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.181
+2025-10-02 04:56:16,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:56:16,336 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 04:56:16,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:16,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:16,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:17,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:56:17,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:56:17,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:19,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:19,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:19,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:20,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:56:20,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:56:20,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:20,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:20,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:20,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:20,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:56:20,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:56:20,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:21,241 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:56:21,255 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:56:21,339 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.576
+2025-10-02 04:56:21,339 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 04:56:21,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 04:56:21,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:21,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:21,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:21,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:56:21,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:56:21,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:24,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:24,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:24,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:24,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 04:56:24,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 04:56:24,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:24,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:24,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:24,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:25,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:56:25,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:56:25,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:26,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:26,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:26,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:26,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:56:26,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:56:26,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:30,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:30,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:30,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:30,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:56:30,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:56:30,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:31,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:31,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:31,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:31,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:56:31,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:56:31,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:32,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:32,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:32,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:32,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:56:32,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:56:32,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:36,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:36,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:36,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:36,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:56:36,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:56:36,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:37,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:37,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:37,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:37,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:56:37,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:56:37,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:38,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:38,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:38,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:38,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:56:38,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:56:38,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:41,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:41,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:41,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:41,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:56:41,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:56:41,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:42,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:42,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:42,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:42,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:56:42,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:56:42,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:44,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:44,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:45,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:45,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:56:45,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:56:45,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:45,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:45,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:45,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:46,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s
+2025-10-02 04:56:46,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image)
+2025-10-02 04:56:46,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:46,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:46,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:46,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:46,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:56:46,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:56:46,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:49,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:49,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:49,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:50,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:56:50,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:56:50,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:50,680 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:50,681 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:50,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:50,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:56:50,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:56:50,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:52,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:52,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:52,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:52,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:56:52,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:56:52,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:52,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:52,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:52,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:52,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:56:52,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:56:52,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:54,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:54,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:54,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:55,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:56:55,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:56:55,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:56,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:56,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:56,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:56,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:56:56,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:56:56,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:56,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:56,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:56,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:56,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:56:56,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:56:56,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:56,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:56:56,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:56:56,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:56:56,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 04:56:56,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 04:56:56,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:56:58,879 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:56:58,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:56:58,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:56:59,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s
+2025-10-02 04:56:59,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image)
+2025-10-02 04:56:59,169 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:57:01,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:01,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:01,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:01,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 04:57:01,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 04:57:01,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:02,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:02,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:02,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:02,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:57:02,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:57:02,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:03,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:57:03,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:57:03,934 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.745
+2025-10-02 04:57:03,934 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 04:57:03,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:57:05,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:05,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:05,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:05,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:57:05,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:57:05,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:06,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:06,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:06,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:06,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:57:06,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:57:06,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:06,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:06,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:06,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:06,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:57:06,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:57:06,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:07,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:07,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:07,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:07,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:57:07,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:57:07,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:08,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:08,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:08,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:08,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:57:08,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:57:08,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:09,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:09,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:09,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:09,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:57:09,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:57:09,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:10,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:10,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:10,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:10,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:57:10,340 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:57:10,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:11,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:11,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:11,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:11,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:57:11,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:57:11,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:15,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:15,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:15,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:15,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.214s
+2025-10-02 04:57:15,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.214s (avg: 0.214s/image)
+2025-10-02 04:57:15,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:15,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:15,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:15,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:15,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:57:15,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:57:15,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:16,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:16,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:16,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:16,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:57:16,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:57:16,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:16,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:16,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:16,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:17,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:57:17,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:57:17,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:18,349 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:57:18,371 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(784, 784, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:57:18,448 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.610
+2025-10-02 04:57:18,448 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 04:57:18,448 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 04:57:18,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:18,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:18,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:18,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 04:57:18,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 04:57:18,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:21,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:21,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:21,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:21,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:57:21,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:57:21,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:22,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:22,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:22,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:22,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 04:57:22,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 04:57:22,563 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:23,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:23,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:23,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:23,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:57:23,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:57:23,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:24,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:24,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:24,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:24,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:57:24,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:57:24,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:28,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:28,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:28,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:28,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:57:28,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:57:28,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:28,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:28,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:28,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:28,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:57:28,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:57:28,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:30,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:30,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:30,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:30,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:57:30,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:57:30,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:32,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:32,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:32,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:32,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:57:32,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:57:32,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:34,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:34,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:34,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:34,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:57:34,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:57:34,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:37,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:37,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:37,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:37,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:57:37,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:57:37,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:39,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:39,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:39,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:39,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:57:39,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:57:39,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:40,059 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:40,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:40,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:40,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:57:40,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:57:40,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:40,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:40,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:40,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:40,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 04:57:40,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 04:57:40,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:40,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:40,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:40,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:40,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:57:40,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:57:40,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:47,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:47,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:47,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:47,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:57:47,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:57:47,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:48,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:48,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:48,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:48,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:57:48,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:57:48,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:48,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:48,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:48,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:48,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 04:57:48,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 04:57:48,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:50,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:50,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:50,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:50,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:57:50,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:57:50,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:51,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:51,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:51,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:51,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:57:51,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:57:51,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:52,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:52,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:53,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:53,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:57:53,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:57:53,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:53,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:53,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:53,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:53,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:57:53,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:57:53,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:55,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:55,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:55,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:55,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:57:55,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:57:55,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:56,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:56,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:56,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:56,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:57:56,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:57:56,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:57,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:57,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:57,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:58,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:57:58,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:57:58,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:58,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:58,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:58,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:58,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:57:58,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:57:58,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:57:59,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:57:59,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:57:59,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:57:59,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:57:59,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:57:59,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:00,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:00,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:00,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:00,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:58:00,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:58:00,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:03,086 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:03,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:03,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:03,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:58:03,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:58:03,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:05,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:05,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:05,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:05,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:58:05,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:58:05,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:07,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:07,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:07,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:07,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:58:07,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:58:07,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:10,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:10,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:10,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:11,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 04:58:11,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 04:58:11,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:11,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:11,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:11,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:11,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 04:58:11,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 04:58:11,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:11,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:11,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:11,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:11,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:58:11,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:58:11,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:11,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:11,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:11,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:12,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 04:58:12,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 04:58:12,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:13,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:13,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:13,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:14,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:58:14,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:58:14,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:18,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:18,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:18,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:18,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 04:58:18,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 04:58:18,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:19,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:19,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:19,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:19,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:58:19,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:58:19,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:19,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:19,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:19,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:20,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 04:58:20,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 04:58:20,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:20,651 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:58:20,663 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:58:20,727 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.554
+2025-10-02 04:58:20,727 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.064s
+2025-10-02 04:58:20,727 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.065s
+2025-10-02 04:58:21,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:21,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:21,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:21,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:58:21,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:58:21,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:23,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:23,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:23,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:23,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:58:23,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:58:23,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:24,986 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:58:25,018 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:58:25,104 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.923
+2025-10-02 04:58:25,105 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 04:58:25,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:58:28,194 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:58:28,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:58:28,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:58:28,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s
+2025-10-02 04:58:28,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image)
+2025-10-02 04:58:28,483 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:58:29,355 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:58:29,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:58:29,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.874
+2025-10-02 04:58:29,468 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 04:58:29,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 04:58:32,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:32,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:32,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:33,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:58:33,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:58:33,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:36,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:36,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:36,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:36,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:58:36,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:58:36,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:37,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:37,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:37,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:37,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:58:37,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:58:37,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:37,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:37,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:37,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:37,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:58:37,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:58:37,558 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:40,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:40,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:40,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:40,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 04:58:40,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 04:58:40,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:40,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:58:41,002 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:58:41,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.024
+2025-10-02 04:58:41,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 04:58:41,094 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s
+2025-10-02 04:58:41,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:41,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:41,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:42,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:58:42,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:58:42,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:43,964 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:58:43,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:58:44,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:58:44,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s
+2025-10-02 04:58:44,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image)
+2025-10-02 04:58:44,246 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:58:45,091 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:45,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:45,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:45,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:58:45,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:58:45,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:45,920 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:58:45,947 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:58:46,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.977
+2025-10-02 04:58:46,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 04:58:46,041 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 04:58:49,954 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:58:49,991 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:58:50,092 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.318
+2025-10-02 04:58:50,092 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s
+2025-10-02 04:58:50,093 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s
+2025-10-02 04:58:51,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:51,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:51,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:51,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 04:58:51,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 04:58:51,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:54,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:54,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:54,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:54,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:58:54,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:58:54,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:57,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:57,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:57,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:57,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:58:57,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:58:57,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:57,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:57,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:57,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:58,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:58:58,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:58:58,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:58:58,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:58:58,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:58:58,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:58:58,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 04:58:58,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 04:58:58,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:04,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:04,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:04,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:04,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 04:59:04,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 04:59:04,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:07,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:07,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:07,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:08,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 04:59:08,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 04:59:08,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:10,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:10,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:10,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:10,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 04:59:10,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 04:59:10,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:13,568 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:59:13,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:59:13,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:59:13,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s
+2025-10-02 04:59:13,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image)
+2025-10-02 04:59:13,839 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:59:13,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:13,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:14,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:14,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:59:14,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:59:14,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:15,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:15,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:15,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:15,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:59:15,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:59:15,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:15,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:15,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:15,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:15,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 04:59:15,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 04:59:15,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:21,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:21,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:21,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:21,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 04:59:21,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 04:59:21,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:22,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:22,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:23,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:23,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 04:59:23,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 04:59:23,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:23,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:23,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:23,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:23,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:59:23,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:59:23,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:25,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:25,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:25,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:25,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 04:59:25,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 04:59:25,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:27,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:27,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:27,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:27,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 04:59:27,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 04:59:27,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:29,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:29,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:29,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:29,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:59:29,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:59:29,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:30,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:30,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:30,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:30,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 04:59:30,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 04:59:30,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:30,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:30,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:30,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:30,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:59:30,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:59:30,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:32,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:32,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:32,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:32,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 04:59:32,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 04:59:32,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:32,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:32,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:32,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:32,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 04:59:32,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 04:59:32,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:33,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:33,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:33,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:33,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:59:33,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:59:33,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:35,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:35,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:35,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:35,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:59:35,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:59:35,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:35,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:35,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:35,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:35,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 04:59:35,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 04:59:35,965 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:36,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:36,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:36,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:36,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:59:36,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:59:36,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:37,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:37,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:37,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:37,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 04:59:37,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 04:59:37,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:38,337 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 04:59:38,355 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 04:59:38,429 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.773
+2025-10-02 04:59:38,429 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 04:59:38,429 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 04:59:40,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:40,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:40,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:40,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 04:59:40,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 04:59:40,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:40,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:40,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:40,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:40,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 04:59:40,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 04:59:40,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:42,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:42,555 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:42,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:42,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 04:59:42,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 04:59:42,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:44,375 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 04:59:44,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 04:59:44,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 04:59:44,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s
+2025-10-02 04:59:44,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image)
+2025-10-02 04:59:44,642 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 04:59:44,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:44,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:45,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:45,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 04:59:45,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 04:59:45,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:47,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:47,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:47,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:47,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:59:47,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:59:47,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:47,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:47,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:47,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:47,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 04:59:47,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 04:59:47,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:50,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:50,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:50,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:50,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 04:59:50,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 04:59:50,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:52,026 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:52,027 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:52,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:52,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 04:59:52,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 04:59:52,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:52,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:52,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:52,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:52,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 04:59:52,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 04:59:52,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:52,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:52,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:52,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:52,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s
+2025-10-02 04:59:52,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image)
+2025-10-02 04:59:52,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:54,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:54,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:54,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:54,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 04:59:54,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 04:59:54,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:56,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:56,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:56,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:56,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 04:59:56,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 04:59:56,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 04:59:58,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 04:59:58,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 04:59:58,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 04:59:58,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 04:59:58,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 04:59:58,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:00,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:00,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:00,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:01,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:00:01,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:00:01,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:05,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:05,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:05,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:05,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:00:05,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:00:05,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:05,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:05,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:05,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:05,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:00:05,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:00:05,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:06,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:06,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:06,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:06,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:00:06,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:00:06,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:11,080 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:00:11,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:00:11,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:00:11,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.312s
+2025-10-02 05:00:11,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.312s (avg: 0.156s/image)
+2025-10-02 05:00:11,393 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:00:12,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:12,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:12,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:12,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:00:12,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:00:12,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:14,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:14,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:14,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:14,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:00:14,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:00:14,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:15,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:15,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:15,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:15,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:00:15,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:00:15,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:18,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:18,676 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:18,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:18,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:00:18,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:00:18,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:19,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:19,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:19,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:19,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:00:19,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:00:19,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:20,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:20,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:20,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:20,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:00:20,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:00:20,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:21,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:00:21,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:00:21,193 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.871
+2025-10-02 05:00:21,193 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:00:21,193 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:00:22,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:22,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:22,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:22,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:00:22,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:00:22,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:25,292 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:00:25,316 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:00:25,389 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=239.353
+2025-10-02 05:00:25,390 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:00:25,390 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:00:25,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:25,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:26,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:26,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:00:26,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:00:26,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:26,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:26,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:26,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:26,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:00:26,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:00:26,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:27,122 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:00:27,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:00:27,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:00:27,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s
+2025-10-02 05:00:27,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image)
+2025-10-02 05:00:27,437 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:00:28,142 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:00:28,172 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:00:28,264 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.064
+2025-10-02 05:00:28,265 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 05:00:28,265 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:00:30,116 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:00:30,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:00:30,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.994
+2025-10-02 05:00:30,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:00:30,214 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:00:30,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:00:30,508 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:00:30,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.760
+2025-10-02 05:00:30,583 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:00:30,583 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:00:31,561 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:00:31,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:00:31,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:00:31,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s
+2025-10-02 05:00:31,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image)
+2025-10-02 05:00:31,840 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:00:34,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:34,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:34,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:34,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:00:34,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:00:34,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:36,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:00:36,911 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:00:36,996 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.393
+2025-10-02 05:00:36,996 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 05:00:36,996 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:00:37,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:37,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:37,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:37,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:00:37,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:00:37,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:37,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:37,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:37,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:37,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s
+2025-10-02 05:00:37,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image)
+2025-10-02 05:00:37,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:38,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:38,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:38,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:38,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:00:38,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:00:38,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:41,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:41,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:41,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:41,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:00:41,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:00:41,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:42,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:42,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:42,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:42,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:00:42,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:00:42,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:45,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:45,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:45,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:45,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:00:45,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:00:45,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:46,579 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:00:46,602 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:00:46,676 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=211.961
+2025-10-02 05:00:46,677 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:00:46,677 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:00:47,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:47,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:47,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:48,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:00:48,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:00:48,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:48,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:48,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:48,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:48,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:00:48,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:00:48,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:49,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:49,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:49,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:49,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:00:49,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:00:49,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:49,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:49,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:49,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:50,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:00:50,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:00:50,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:51,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:51,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:51,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:51,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:00:51,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:00:51,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:52,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:52,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:52,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:52,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:00:52,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:00:52,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:53,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:53,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:53,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:53,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s
+2025-10-02 05:00:53,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image)
+2025-10-02 05:00:53,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:53,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:53,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:53,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:53,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 05:00:53,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 05:00:53,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:55,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:55,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:55,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:55,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:00:55,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:00:55,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:55,406 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:00:55,435 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:00:55,504 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.130
+2025-10-02 05:00:55,505 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s
+2025-10-02 05:00:55,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s
+2025-10-02 05:00:58,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:58,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:58,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:59,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:00:59,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:00:59,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:00:59,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:00:59,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:00:59,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:00:59,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:00:59,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:00:59,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:00,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:00,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:00,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:00,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:01:00,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:01:00,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:03,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:03,452 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:03,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:03,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:01:03,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:01:03,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:04,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:04,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:04,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:04,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:01:04,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:01:04,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:05,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:05,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:05,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:05,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:01:05,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:01:05,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:06,241 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:01:06,269 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:01:06,351 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.119
+2025-10-02 05:01:06,351 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:01:06,352 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 05:01:06,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:01:06,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:01:06,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:01:07,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 05:01:07,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 05:01:07,135 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:01:08,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:08,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:08,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:08,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:01:08,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:01:08,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:09,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:09,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:09,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:09,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:01:09,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:01:09,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:10,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:10,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:10,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:10,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:01:10,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:01:10,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:10,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:10,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:10,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:10,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:01:10,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:01:10,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:11,489 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:01:11,528 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:01:11,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.299
+2025-10-02 05:01:11,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 05:01:11,622 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 05:01:13,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:13,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:13,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:14,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:01:14,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:01:14,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:15,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:15,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:15,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:15,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:01:15,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:01:15,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:20,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:20,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:20,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:20,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:01:20,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:01:20,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:21,676 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:01:21,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:01:21,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:01:21,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s
+2025-10-02 05:01:21,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image)
+2025-10-02 05:01:21,970 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:01:22,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:22,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:22,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:22,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:01:22,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:01:22,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:23,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:23,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:23,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:24,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:01:24,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:01:24,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:27,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:27,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:27,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:27,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:01:27,951 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:01:27,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:28,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:28,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:28,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:28,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:01:28,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:01:28,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:29,853 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:01:29,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:01:29,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:01:30,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.327s
+2025-10-02 05:01:30,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.327s (avg: 0.164s/image)
+2025-10-02 05:01:30,181 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:01:32,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:32,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:32,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:32,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:01:32,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:01:32,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:32,978 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:01:32,979 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:01:33,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:01:33,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s
+2025-10-02 05:01:33,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image)
+2025-10-02 05:01:33,260 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:01:33,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:33,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:33,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:33,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:01:33,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:01:33,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:34,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:34,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:34,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:34,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:01:34,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:01:34,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:36,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:36,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:36,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:36,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:01:36,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:01:36,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:37,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:37,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:37,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:37,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:01:37,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:01:37,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:39,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:39,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:40,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:40,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:01:40,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:01:40,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:40,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:40,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:40,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:40,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 05:01:40,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 05:01:40,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:43,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:43,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:43,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:43,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:01:43,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:01:43,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:44,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:44,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:44,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:44,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:01:44,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:01:44,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:45,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:45,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:45,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:45,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:01:45,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:01:45,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:46,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:46,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:46,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:46,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:01:46,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:01:46,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:46,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:46,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:47,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:47,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:01:47,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:01:47,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:48,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:48,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:48,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:49,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:01:49,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:01:49,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:49,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:49,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:49,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:49,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:01:49,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:01:49,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:52,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:52,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:52,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:52,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:01:52,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:01:52,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:52,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:52,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:52,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:52,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:01:52,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:01:52,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:53,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:53,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:53,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:53,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:01:53,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:01:53,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:56,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:56,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:56,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:56,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:01:56,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:01:56,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:59,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:59,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:59,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:59,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:01:59,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:01:59,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:01:59,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:01:59,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:01:59,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:01:59,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 05:01:59,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 05:01:59,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:00,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:00,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:00,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:00,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:02:00,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:02:00,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:02,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:02,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:02,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:02,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:02:02,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:02:02,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:04,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:04,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:04,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:04,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:02:04,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:02:04,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:04,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:04,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:04,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:04,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:02:04,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:02:04,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:04,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:04,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:04,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:04,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:02:04,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:02:04,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:05,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:05,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:05,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:05,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:02:05,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:02:05,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:06,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:06,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:06,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:06,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:02:06,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:02:06,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:09,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:09,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:09,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:09,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:02:09,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:02:09,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:10,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:10,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:10,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:10,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:02:10,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:02:10,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:13,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:13,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:13,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:13,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:02:13,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:02:13,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:15,900 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:02:15,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:02:15,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:02:16,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s
+2025-10-02 05:02:16,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image)
+2025-10-02 05:02:16,186 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:02:16,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:16,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:16,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:16,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:02:16,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:02:16,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:16,677 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:02:16,691 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:02:16,768 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.216
+2025-10-02 05:02:16,769 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:02:16,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:02:21,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:21,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:21,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:21,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:02:21,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:02:21,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:26,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:26,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:26,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:26,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:02:26,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:02:26,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:26,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:26,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:26,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:26,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:02:26,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:02:26,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:27,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:27,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:27,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:27,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:02:27,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:02:27,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:30,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:30,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:30,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:30,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:02:30,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:02:30,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:31,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:31,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:31,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:31,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:02:31,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:02:31,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:33,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:33,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:33,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:33,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:02:33,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:02:33,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:35,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:35,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:35,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:35,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:02:35,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:02:35,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:39,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:39,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:39,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:39,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:02:39,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:02:39,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:44,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:44,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:44,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:44,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:02:44,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:02:44,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:48,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:48,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:48,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:48,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:02:48,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:02:48,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:51,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:51,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:51,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:51,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:02:51,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:02:51,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:02:55,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:02:55,542 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:02:55,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:02:55,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:02:55,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:02:55,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:00,587 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:00,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:00,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:00,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:03:00,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:03:00,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:07,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:07,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:07,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:07,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:03:07,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:03:07,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:09,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:09,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:09,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:09,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:03:09,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:03:09,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:13,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:13,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:13,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.094
+2025-10-02 05:03:13,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:03:13,592 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:03:21,110 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:21,149 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:21,234 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.300
+2025-10-02 05:03:21,234 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 05:03:21,234 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:03:21,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:21,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:21,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:22,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 05:03:22,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 05:03:22,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:22,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:22,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:22,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:22,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:03:22,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:03:22,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:24,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:24,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:24,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:24,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:03:24,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:03:24,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:26,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:26,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:26,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:26,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:03:26,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:03:26,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:31,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:31,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:32,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:32,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:03:32,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:03:32,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:32,251 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:32,275 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:32,370 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.573
+2025-10-02 05:03:32,370 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s
+2025-10-02 05:03:32,371 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s
+2025-10-02 05:03:32,714 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:32,738 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:32,835 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.155
+2025-10-02 05:03:32,835 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s
+2025-10-02 05:03:32,837 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s
+2025-10-02 05:03:35,803 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:35,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:35,922 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=187.992
+2025-10-02 05:03:35,922 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 05:03:35,923 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 05:03:36,342 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:36,366 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:36,462 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.014
+2025-10-02 05:03:36,462 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s
+2025-10-02 05:03:36,463 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s
+2025-10-02 05:03:39,340 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:03:39,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:03:39,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:03:39,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s
+2025-10-02 05:03:39,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image)
+2025-10-02 05:03:39,632 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:03:39,801 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:39,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:39,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=36.518
+2025-10-02 05:03:39,909 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 05:03:39,911 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 05:03:40,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:40,791 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:40,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=191.701
+2025-10-02 05:03:40,882 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 05:03:40,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:03:41,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:41,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:41,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:41,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:03:41,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:03:41,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:46,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:46,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:46,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:46,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:03:46,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:03:46,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:46,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:46,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:46,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:46,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:03:46,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:03:46,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:47,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:47,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:47,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:47,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:03:47,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:03:47,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:48,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:48,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:48,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:48,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:03:48,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:03:48,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:55,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:55,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:55,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:55,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:03:55,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:03:55,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:56,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:56,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:56,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:57,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:03:57,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:03:57,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:58,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:58,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:58,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:03:58,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:03:58,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:03:58,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:03:59,094 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:03:59,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:03:59,194 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.500
+2025-10-02 05:03:59,195 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:03:59,195 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:03:59,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:03:59,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:03:59,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:00,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:04:00,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:04:00,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:01,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:01,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:01,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:02,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:04:02,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:04:02,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:02,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:04:02,952 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:04:03,039 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.964
+2025-10-02 05:04:03,039 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 05:04:03,039 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 05:04:03,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:03,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:03,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:03,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:04:03,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:04:03,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:05,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:05,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:05,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:05,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:04:05,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:04:05,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:05,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:05,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:05,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:05,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:04:05,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:04:05,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:06,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:06,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:06,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:06,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:04:06,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:04:06,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:06,731 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:04:06,755 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:04:06,837 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.219
+2025-10-02 05:04:06,838 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 05:04:06,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:04:07,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:07,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:07,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:07,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:04:07,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:04:07,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:08,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:08,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:09,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:09,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:04:09,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:04:09,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:10,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:10,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:10,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:10,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:04:10,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:04:10,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:11,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:11,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:11,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:11,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:04:11,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:04:11,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:11,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:11,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:11,826 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:11,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:04:11,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:04:11,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:11,984 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:04:12,007 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:04:12,085 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.911
+2025-10-02 05:04:12,086 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:04:12,086 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:04:14,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:14,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:14,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:14,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:04:14,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:04:14,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:14,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:14,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:14,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:15,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:04:15,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:04:15,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:17,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:17,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:17,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:17,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:04:17,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:04:17,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:19,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:19,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:19,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:19,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:04:19,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:04:19,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:19,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:19,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:19,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:20,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:04:20,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:04:20,122 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:20,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:20,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:20,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:20,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:04:20,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:04:20,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:23,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:23,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:23,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:23,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:04:23,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:04:23,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:23,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:23,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:23,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:23,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:04:23,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:04:23,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:26,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:26,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:26,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:26,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:04:26,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:04:26,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:26,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:26,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:26,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:26,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:04:26,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:04:26,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:27,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:27,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:27,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:27,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:04:27,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:04:27,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:28,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:28,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:28,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:28,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:04:28,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:04:28,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:28,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:28,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:28,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:28,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:04:28,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:04:28,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:30,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:30,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:30,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:30,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:04:30,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:04:30,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:31,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:31,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:32,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:32,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:04:32,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:04:32,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:32,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:32,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:32,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:33,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:04:33,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:04:33,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:34,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:34,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:34,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:34,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:04:34,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:04:34,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:36,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:36,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:36,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:36,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 05:04:36,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 05:04:36,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:37,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:37,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:37,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:37,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:04:37,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:04:37,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:38,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:38,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:38,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:38,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:04:38,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:04:38,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:39,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:39,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:39,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:39,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:04:39,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:04:39,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:39,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:39,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:39,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:39,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:04:39,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:04:39,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:39,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:39,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:39,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:39,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 05:04:39,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 05:04:39,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:40,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:40,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:40,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:40,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:04:40,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:04:40,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:40,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:40,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:41,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:41,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:04:41,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:04:41,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:41,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:41,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:41,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:41,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:04:41,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:04:41,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:41,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:41,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:41,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:41,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:04:41,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:04:41,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:43,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:43,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:43,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:43,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:04:43,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:04:43,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:44,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:44,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:44,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:44,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:04:44,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:04:44,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:44,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:44,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:44,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:44,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s
+2025-10-02 05:04:44,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image)
+2025-10-02 05:04:44,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:45,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:45,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:45,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:45,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:04:45,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:04:45,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:49,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:49,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:49,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:49,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:04:49,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:04:49,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:49,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:49,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:49,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:49,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:04:49,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:04:49,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:51,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:51,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:51,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:51,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:04:51,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:04:51,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:51,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:51,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:51,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:51,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:04:51,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:04:51,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:52,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:52,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:52,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:52,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:04:52,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:04:52,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:53,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:53,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:53,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:53,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:04:53,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:04:53,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:04:58,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:04:58,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:04:58,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:04:58,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:04:58,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:04:58,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:00,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:00,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:00,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:00,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:05:00,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:05:00,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:01,153 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:05:01,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:05:01,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.078
+2025-10-02 05:05:01,258 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 05:05:01,258 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:05:01,581 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:05:01,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:05:01,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:05:01,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s
+2025-10-02 05:05:01,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image)
+2025-10-02 05:05:01,878 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:05:02,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:02,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:02,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:02,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:05:02,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:05:02,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:02,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:02,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:02,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:02,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:05:02,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:05:02,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:04,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:05:04,406 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:05:04,485 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.426
+2025-10-02 05:05:04,486 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:05:04,486 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:05:05,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:05,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:05,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:05,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:05:05,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:05:05,830 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:07,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:07,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:07,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:07,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:05:07,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:05:07,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:07,563 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:05:07,587 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:05:07,663 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.318
+2025-10-02 05:05:07,663 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 05:05:07,663 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:05:08,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:08,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:08,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:08,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:05:08,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:05:08,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:08,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:08,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:08,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:09,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:05:09,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:05:09,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:09,214 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:05:09,231 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:05:09,305 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.182
+2025-10-02 05:05:09,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:05:09,305 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:05:10,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:10,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:10,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:10,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:05:10,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:05:10,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:12,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:12,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:12,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:12,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:05:12,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:05:12,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:13,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:13,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:13,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:13,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:05:13,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:05:13,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:13,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:13,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:13,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:14,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:05:14,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:05:14,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:16,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:16,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:16,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:16,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:05:16,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:05:16,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:16,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:16,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:17,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:17,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:05:17,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:05:17,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:20,060 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:05:20,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:05:20,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:05:20,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s
+2025-10-02 05:05:20,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image)
+2025-10-02 05:05:20,366 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:05:21,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:21,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:21,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:21,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:05:21,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:05:21,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:22,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:22,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:22,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:22,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:05:22,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:05:22,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:25,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:25,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:25,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:25,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:05:25,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:05:25,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:25,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:25,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:25,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:25,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:05:25,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:05:25,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:29,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:29,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:29,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:29,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:05:29,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:05:29,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:30,659 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:05:30,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:05:30,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:05:30,951 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s
+2025-10-02 05:05:30,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image)
+2025-10-02 05:05:30,952 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:05:33,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:33,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:33,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:33,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:05:33,981 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:05:33,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:39,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:39,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:39,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:39,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:05:39,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:05:39,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:43,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:43,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:43,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:44,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:05:44,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:05:44,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:46,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:46,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:46,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:46,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:05:46,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:05:46,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:47,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:47,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:47,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:47,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:05:47,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:05:47,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:49,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:49,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:49,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:49,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:05:49,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:05:49,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:55,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:55,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:55,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:55,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:05:55,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:05:55,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:55,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:55,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:55,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:55,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:05:55,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:05:55,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:05:59,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:05:59,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:05:59,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:05:59,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:05:59,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:05:59,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:00,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:00,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:00,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:00,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:06:00,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:06:00,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:02,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:02,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:02,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:02,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:06:02,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:06:02,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:03,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:03,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:03,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:03,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:06:03,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:06:03,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:04,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:04,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:04,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:04,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:06:04,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:06:04,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:05,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:05,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:05,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:05,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:06:05,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:06:05,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:06,097 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:06,135 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:06,216 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.298
+2025-10-02 05:06:06,216 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:06:06,216 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:06:07,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:07,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:07,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:07,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:06:07,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:06:07,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:08,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:08,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:08,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:08,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:06:08,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:06:08,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:08,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:08,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:08,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:09,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:06:09,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:06:09,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:09,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:09,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:09,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:09,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:06:09,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:06:09,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:11,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:11,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:11,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:11,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:06:11,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:06:11,438 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:11,921 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:11,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:12,023 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.297
+2025-10-02 05:06:12,024 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:06:12,024 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:06:13,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:13,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:13,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:13,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:06:13,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:06:13,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:18,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:18,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:18,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:18,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:06:18,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:06:18,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:20,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:20,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:20,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:20,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:06:20,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:06:20,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:22,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:22,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:22,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:22,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:06:22,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:06:22,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:23,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:23,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:23,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:23,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:06:23,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:06:23,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:27,754 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:27,773 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:27,853 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.449
+2025-10-02 05:06:27,854 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:06:27,854 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:06:29,208 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:06:29,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:06:29,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:06:29,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s
+2025-10-02 05:06:29,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image)
+2025-10-02 05:06:29,505 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:06:29,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:29,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:29,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:29,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:06:29,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:06:29,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:34,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:34,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:34,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:34,280 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:06:34,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:06:34,281 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:34,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:34,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:34,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:34,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:06:34,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:06:34,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:34,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:34,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:34,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:35,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:06:35,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:06:35,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:35,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:35,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:35,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:35,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:06:35,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:06:35,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:36,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:36,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:36,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:36,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:06:36,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:06:36,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:39,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:39,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:39,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:39,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:06:39,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:06:39,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:39,650 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:06:39,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:06:39,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:06:39,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s
+2025-10-02 05:06:39,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image)
+2025-10-02 05:06:39,917 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:06:41,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:41,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:41,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:41,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:06:41,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:06:41,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:41,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:41,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:41,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:41,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 05:06:41,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 05:06:41,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:43,817 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:06:43,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:06:43,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:06:44,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s
+2025-10-02 05:06:44,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image)
+2025-10-02 05:06:44,123 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:06:45,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:45,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:45,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:45,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:06:45,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:06:45,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:45,441 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:45,459 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:45,541 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.197
+2025-10-02 05:06:45,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:06:45,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:06:48,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:48,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:48,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:48,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:06:48,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:06:48,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:48,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:48,557 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:48,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:48,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:06:48,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:06:48,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:49,210 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:06:49,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:06:49,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:06:49,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s
+2025-10-02 05:06:49,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image)
+2025-10-02 05:06:49,519 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:06:49,581 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:49,594 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:49,671 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.226
+2025-10-02 05:06:49,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:06:49,672 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:06:49,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:49,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:49,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:49,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:06:49,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:06:49,957 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:51,432 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:51,476 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:51,568 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.707
+2025-10-02 05:06:51,568 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:06:51,569 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:06:52,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:52,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:52,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:52,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:06:52,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:06:52,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:52,956 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:52,975 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:53,065 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.682
+2025-10-02 05:06:53,065 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 05:06:53,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:06:54,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:54,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:54,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:54,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:06:54,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:06:54,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:06:55,653 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:55,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:55,759 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.590
+2025-10-02 05:06:55,759 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:06:55,760 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:06:59,240 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:06:59,268 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:06:59,347 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.172
+2025-10-02 05:06:59,347 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:06:59,348 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:06:59,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:06:59,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:06:59,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:06:59,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:06:59,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:06:59,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:01,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:01,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:01,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:01,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:07:01,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:07:01,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:02,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:02,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:02,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:02,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:07:02,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:07:02,505 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:03,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:03,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:03,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:03,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:07:03,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:07:03,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:04,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:04,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:04,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:04,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:07:04,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:07:04,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:04,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:04,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:04,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:04,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:07:04,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:07:04,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:09,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:09,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:09,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:09,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:07:09,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:07:09,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:11,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:11,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:11,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:11,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 05:07:11,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 05:07:11,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:13,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:13,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:13,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:13,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:07:13,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:07:13,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:14,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:14,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:14,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:14,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:07:14,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:07:14,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:16,028 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:07:16,053 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:07:16,130 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.166
+2025-10-02 05:07:16,130 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:07:16,131 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:07:17,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:17,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:17,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:17,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:07:17,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:07:17,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:20,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:07:20,114 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:07:20,191 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.519
+2025-10-02 05:07:20,192 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:07:20,192 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:07:21,543 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:07:21,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:07:21,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:07:21,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s
+2025-10-02 05:07:21,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image)
+2025-10-02 05:07:21,858 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:07:24,088 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:07:24,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:07:24,203 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=5.820
+2025-10-02 05:07:24,204 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:07:24,204 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:07:25,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:25,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:25,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:26,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:07:26,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:07:26,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:27,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:27,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:27,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:27,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:07:27,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:07:27,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:32,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:32,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:32,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:32,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:07:32,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:07:32,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:34,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:34,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:34,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:34,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:07:34,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:07:34,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:35,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:35,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:35,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:35,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:07:35,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:07:35,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:40,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:40,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:40,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:40,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:07:40,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:07:40,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:43,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:43,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:43,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:43,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:07:43,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:07:43,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:43,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:43,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:43,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:44,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:07:44,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:07:44,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:46,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:46,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:46,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:46,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:07:46,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:07:46,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:50,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:50,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:50,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:50,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:07:50,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:07:50,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:51,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:51,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:51,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:51,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:07:51,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:07:51,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:55,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:55,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:55,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:55,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:07:55,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:07:55,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:55,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:55,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:55,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:55,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:07:55,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:07:55,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:56,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:56,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:56,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:56,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:07:56,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:07:56,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:07:56,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:07:56,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:07:56,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:07:57,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:07:57,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:07:57,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:04,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:04,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:04,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:04,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:08:04,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:08:04,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:04,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:04,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:04,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:04,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:08:04,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:08:04,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:06,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:06,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:06,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:06,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:08:06,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:08:06,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:13,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:13,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:13,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:13,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:08:13,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:08:13,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:22,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:22,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:22,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:22,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:08:22,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:08:22,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:22,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:22,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:22,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:23,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 05:08:23,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 05:08:23,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:25,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:25,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:25,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:25,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:08:25,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:08:25,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:27,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:27,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:27,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:27,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:08:27,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:08:27,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:29,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:29,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:29,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:29,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:08:29,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:08:29,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:31,468 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:08:31,495 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:08:31,581 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.525
+2025-10-02 05:08:31,581 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 05:08:31,583 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 05:08:32,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:32,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:32,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:32,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:08:32,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:08:32,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:34,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:34,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:34,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:35,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 05:08:35,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 05:08:35,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:38,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:38,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:38,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:38,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:08:38,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:08:38,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:38,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:38,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:38,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:38,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:08:38,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:08:38,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:39,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:39,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:39,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:39,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:08:39,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:08:39,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:40,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:40,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:40,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:40,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:08:40,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:08:40,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:42,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:42,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:42,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:42,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:08:42,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:08:42,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:42,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:42,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:42,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:42,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:08:42,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:08:42,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:45,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:45,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:45,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:45,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:08:45,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:08:45,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:46,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:46,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:46,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:46,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:08:46,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:08:46,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:47,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:47,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:47,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:47,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:08:47,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:08:47,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:47,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:47,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:47,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:47,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:08:47,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:08:47,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:50,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:50,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:50,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:50,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:08:50,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:08:50,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:53,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:53,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:53,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:53,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:08:53,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:08:53,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:54,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:54,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:54,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:54,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:08:54,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:08:54,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:56,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:56,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:56,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:56,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:08:56,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:08:56,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:57,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:08:57,102 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:08:57,187 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.893
+2025-10-02 05:08:57,188 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 05:08:57,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:08:57,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:08:58,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:08:58,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:08:58,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:08:58,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:08:58,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:08:59,300 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:08:59,338 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:08:59,421 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.878
+2025-10-02 05:08:59,422 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:08:59,423 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:09:00,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:00,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:00,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:00,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:09:00,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:09:00,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:01,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:01,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:01,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:01,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:09:01,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:09:01,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:02,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:02,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:02,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:02,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:09:02,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:09:02,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:04,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:04,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:04,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:05,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:09:05,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:09:05,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:06,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:06,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:06,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:06,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:09:06,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:09:06,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:08,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:08,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:08,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:08,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:09:08,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:09:08,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:10,390 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:10,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:10,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:10,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:09:10,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:09:10,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:11,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:11,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:11,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:11,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:09:11,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:09:11,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:11,852 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:09:11,874 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:09:11,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.019
+2025-10-02 05:09:11,958 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:09:11,959 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:09:12,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:12,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:12,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:12,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:09:12,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:09:12,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:15,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:15,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:15,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:15,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:09:15,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:09:15,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:15,665 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:09:15,687 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:09:15,766 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=223.928
+2025-10-02 05:09:15,766 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:09:15,767 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:09:15,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:15,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:15,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:16,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:09:16,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:09:16,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:17,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:17,436 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:17,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:17,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:09:17,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:09:17,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:19,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:19,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:19,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:19,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:09:19,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:09:19,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:19,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:19,829 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:19,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:19,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:09:19,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:09:19,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:20,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:09:20,344 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:09:20,422 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=233.991
+2025-10-02 05:09:20,422 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:09:20,422 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:09:22,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:22,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:22,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:22,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:09:22,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:09:22,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:24,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:24,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:24,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:24,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:09:24,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:09:24,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:27,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:27,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:27,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:27,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:09:27,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:09:27,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:27,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:27,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:28,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:28,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:09:28,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:09:28,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:28,278 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:09:28,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:09:28,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:09:28,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s
+2025-10-02 05:09:28,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image)
+2025-10-02 05:09:28,556 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:09:29,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:29,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:29,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:29,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:09:29,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:09:29,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:30,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:30,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:30,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:30,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:09:30,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:09:30,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:31,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:31,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:31,805 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:31,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:09:31,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:09:31,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:34,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:34,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:34,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:34,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:09:34,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:09:34,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:36,438 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:09:36,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:09:36,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:09:36,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 05:09:36,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 05:09:36,722 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:09:36,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:36,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:36,914 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:37,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:09:37,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:09:37,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:37,432 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs.
+2025-10-02 05:09:37,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB
+2025-10-02 05:09:37,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행
+2025-10-02 05:09:37,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.379s
+2025-10-02 05:09:37,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.379s (avg: 0.126s/image)
+2025-10-02 05:09:37,813 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs.
+2025-10-02 05:09:41,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:41,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:41,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:41,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:09:41,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:09:41,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:42,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:42,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:42,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:43,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:09:43,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:09:43,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:43,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:43,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:43,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:43,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:09:43,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:09:43,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:43,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:43,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:43,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:44,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:09:44,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:09:44,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:44,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:44,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:44,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:44,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:09:44,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:09:44,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:44,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:44,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:44,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:45,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:09:45,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:09:45,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:45,553 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:09:45,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:09:45,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:09:45,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.331s
+2025-10-02 05:09:45,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.331s (avg: 0.165s/image)
+2025-10-02 05:09:45,885 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:09:47,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:47,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:47,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:48,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:09:48,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:09:48,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:48,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:49,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:49,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:49,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:09:49,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:09:49,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:50,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:50,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:50,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:50,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:09:50,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:09:50,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:50,882 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:09:50,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:09:50,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:09:51,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s
+2025-10-02 05:09:51,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image)
+2025-10-02 05:09:51,168 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:09:52,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:52,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:52,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:52,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:09:52,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:09:52,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:54,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:54,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:54,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:54,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:09:54,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:09:54,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:54,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:54,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:54,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:54,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:09:54,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:09:54,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:55,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:55,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:55,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:55,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:09:55,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:09:55,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:56,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:56,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:56,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:56,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:09:56,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:09:56,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:57,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:57,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:57,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:57,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:09:57,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:09:57,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:57,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:57,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:57,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:57,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:09:57,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:09:57,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:09:58,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:09:58,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:09:58,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:09:58,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:09:58,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:09:58,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:00,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:00,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:00,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:00,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:10:00,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:10:00,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:02,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:02,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:02,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:02,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:10:02,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:10:02,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:02,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:02,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:02,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:02,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:10:02,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:10:02,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:03,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:03,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:03,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:03,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:10:03,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:10:03,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:06,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:06,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:06,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:06,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:10:06,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:10:06,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:07,033 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs.
+2025-10-02 05:10:07,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB
+2025-10-02 05:10:07,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행
+2025-10-02 05:10:07,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.449s
+2025-10-02 05:10:07,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.449s (avg: 0.150s/image)
+2025-10-02 05:10:07,484 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs.
+2025-10-02 05:10:08,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:08,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:08,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:08,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:10:08,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:10:08,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:10,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:10,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:10,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:10,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:10:10,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:10:10,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:13,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:13,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:13,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:13,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:10:13,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:10:13,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:14,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:14,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:14,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:14,216 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:10:14,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:10:14,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:15,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:15,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:15,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:15,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:10:15,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:10:15,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:15,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:15,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:15,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:15,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:10:15,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:10:15,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:16,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:16,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:16,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:16,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:10:16,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:10:16,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:17,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:17,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:17,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:17,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:10:17,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:10:17,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:18,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:18,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:18,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:18,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:10:18,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:10:18,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:18,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:18,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:18,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:18,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:10:18,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:10:18,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:19,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:19,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:19,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:19,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:10:19,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:10:19,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:22,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:22,132 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:22,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:22,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:10:22,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:10:22,290 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:23,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:23,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:23,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:23,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:10:23,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:10:23,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:24,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:24,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:24,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:24,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:10:24,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:10:24,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:25,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:25,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:25,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:25,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:10:25,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:10:25,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:25,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:25,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:25,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:25,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:10:25,627 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:10:25,627 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:27,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:27,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:27,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:27,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:10:27,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:10:27,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:28,624 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:10:28,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:10:28,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:10:28,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s
+2025-10-02 05:10:28,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image)
+2025-10-02 05:10:28,924 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:10:30,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:30,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:30,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:30,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:10:30,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:10:30,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:30,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:30,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:31,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:31,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:10:31,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:10:31,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:32,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:32,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:32,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:33,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:10:33,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:10:33,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:35,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:35,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:35,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:35,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:10:35,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:10:35,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:38,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:38,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:38,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:38,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:10:38,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:10:38,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:38,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:38,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:38,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:38,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:10:38,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:10:38,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:39,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:39,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:39,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:39,432 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:10:39,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:10:39,433 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:41,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:41,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:41,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:41,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:10:41,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:10:41,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:44,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:44,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:44,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:44,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:10:44,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:10:44,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:45,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:45,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:45,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:45,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:10:45,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:10:45,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:47,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:47,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:47,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:47,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:10:47,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:10:47,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:48,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:48,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:48,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:48,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:10:48,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:10:48,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:50,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:50,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:50,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:50,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:10:50,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:10:50,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:52,646 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:10:52,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:10:52,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:10:52,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s
+2025-10-02 05:10:52,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image)
+2025-10-02 05:10:52,932 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:10:54,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:54,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:54,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:54,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:10:54,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:10:54,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:55,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:55,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:55,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:55,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:10:55,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:10:55,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:55,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:55,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:55,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:55,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:10:55,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:10:55,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:57,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:57,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:57,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:57,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:10:57,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:10:57,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:58,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:58,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:58,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:58,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:10:58,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:10:58,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:58,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:58,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:58,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:59,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:10:59,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:10:59,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:10:59,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:10:59,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:10:59,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:10:59,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:10:59,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:10:59,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:05,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:05,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:05,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:05,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:11:05,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:11:05,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:05,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:05,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:05,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:05,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:11:05,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:11:05,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:05,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:05,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:05,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:06,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:11:06,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:11:06,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:06,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:06,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:06,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:06,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:11:06,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:11:06,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:07,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:07,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:07,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:07,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:11:07,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:11:07,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:08,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:08,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:08,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:08,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:11:08,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:11:08,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:11,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:11,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:11,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:11,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:11:11,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:11:11,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:11,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:11,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:11,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:12,094 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:11:12,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:11:12,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:12,741 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:11:12,764 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:11:12,851 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.226
+2025-10-02 05:11:12,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 05:11:12,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 05:11:13,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:13,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:13,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:13,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:11:13,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:11:13,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:15,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:15,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:15,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:15,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:11:15,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:11:15,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:17,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:17,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:17,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:17,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:11:17,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:11:17,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:19,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:19,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:19,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:19,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:11:19,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:11:19,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:23,181 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:11:23,211 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:11:23,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.099
+2025-10-02 05:11:23,287 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 05:11:23,287 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:11:24,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:24,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:24,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:24,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:11:24,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:11:24,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:26,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:26,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:26,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:26,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:11:26,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:11:26,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:29,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:29,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:29,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:29,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:11:29,228 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:11:29,228 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:29,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:29,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:29,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:29,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:11:29,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:11:29,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:30,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:30,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:30,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:31,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:11:31,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:11:31,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:33,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:33,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:33,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:33,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:11:33,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:11:33,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:33,681 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:11:33,700 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:11:33,773 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.021
+2025-10-02 05:11:33,773 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 05:11:33,773 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 05:11:37,132 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:11:37,157 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:11:37,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.333
+2025-10-02 05:11:37,236 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:11:37,236 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:11:38,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:38,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:38,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:38,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:11:38,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:11:38,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:39,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:39,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:39,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:39,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:11:39,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:11:39,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:40,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:40,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:40,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:40,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s
+2025-10-02 05:11:40,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image)
+2025-10-02 05:11:40,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:40,916 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:11:40,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:11:41,004 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.499
+2025-10-02 05:11:41,005 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 05:11:41,005 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 05:11:44,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:44,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:44,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:44,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:11:44,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:11:44,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:47,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:47,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:47,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:47,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:11:47,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:11:47,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:49,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:49,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:49,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:49,627 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:11:49,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:11:49,628 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:50,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:50,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:50,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:50,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:11:50,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:11:50,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:53,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:53,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:53,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:53,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:11:53,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:11:53,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:56,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:56,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:56,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:56,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:11:56,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:11:56,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:11:59,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:11:59,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:11:59,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:11:59,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:11:59,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:11:59,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:00,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:00,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:00,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:00,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:12:00,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:12:00,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:02,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:02,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:03,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:03,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:12:03,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:12:03,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:05,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:05,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:05,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:05,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:12:05,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:12:05,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:05,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:05,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:05,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:05,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:12:05,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:12:05,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:08,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:08,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:08,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:08,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:12:08,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:12:08,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:10,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:10,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:10,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:11,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:12:11,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:12:11,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:13,250 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:12:13,268 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:12:13,342 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.064
+2025-10-02 05:12:13,342 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:12:13,343 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:12:13,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:13,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:13,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:13,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:12:13,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:12:13,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:17,479 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:12:17,503 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:12:17,585 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=13.764
+2025-10-02 05:12:17,585 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:12:17,585 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:12:18,351 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:12:18,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:12:18,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:12:18,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s
+2025-10-02 05:12:18,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image)
+2025-10-02 05:12:18,643 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:12:19,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:19,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:19,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:19,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:12:19,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:12:19,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:22,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:22,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:22,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:22,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:12:22,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:12:22,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:24,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:24,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:24,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:24,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:12:24,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:12:24,907 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:30,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:30,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:30,147 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:30,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:12:30,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:12:30,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:34,275 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:12:34,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:12:34,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:12:34,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s
+2025-10-02 05:12:34,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image)
+2025-10-02 05:12:34,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:12:35,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:35,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:35,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:35,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:12:35,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:12:35,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:41,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:41,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:41,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:41,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:12:41,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:12:41,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:43,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:43,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:43,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:43,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:12:43,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:12:43,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:46,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:46,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:46,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:46,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:12:46,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:12:46,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:47,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:47,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:47,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:47,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:12:47,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:12:47,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:48,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:48,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:48,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:48,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:12:48,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:12:48,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:50,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:50,462 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:50,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:50,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:12:50,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:12:50,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:50,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:50,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:50,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:50,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:12:50,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:12:50,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:52,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:52,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:52,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:53,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:12:53,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:12:53,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:54,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:54,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:54,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:54,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:12:54,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:12:54,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:55,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:55,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:55,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:55,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:12:55,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:12:55,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:55,346 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:12:55,364 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:12:55,454 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.298
+2025-10-02 05:12:55,455 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 05:12:55,455 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:12:56,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:56,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:56,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:57,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:12:57,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:12:57,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:58,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:58,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:58,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:58,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:12:58,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:12:58,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:12:59,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:12:59,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:12:59,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:12:59,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:12:59,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:12:59,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:01,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:01,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:01,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:01,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:13:01,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:13:01,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:02,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:02,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:02,421 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:02,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:13:02,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:13:02,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:02,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:02,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:02,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:03,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 05:13:03,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 05:13:03,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:03,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:03,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:03,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:03,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:13:03,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:13:03,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:03,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:03,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:03,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:04,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:13:04,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:13:04,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:07,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:07,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:07,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:07,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:13:07,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:13:07,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:08,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:08,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:08,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:08,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:13:08,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:13:08,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:12,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:12,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:12,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:12,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:13:12,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:13:12,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:14,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:13:14,464 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:13:14,542 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.307
+2025-10-02 05:13:14,542 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:13:14,542 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:13:14,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:14,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:14,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:14,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:13:14,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:13:14,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:15,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:15,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:15,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:16,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:13:16,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:13:16,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:16,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:16,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:16,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:17,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:13:17,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:13:17,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:21,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:21,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:21,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:21,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:13:21,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:13:21,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:21,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:13:21,785 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:13:21,858 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.759
+2025-10-02 05:13:21,858 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:13:21,858 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:13:22,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:22,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:22,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:22,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:13:22,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:13:22,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:22,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:22,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:22,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:22,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:13:22,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:13:22,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:24,716 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:13:24,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:13:24,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:13:25,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s
+2025-10-02 05:13:25,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image)
+2025-10-02 05:13:25,004 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:13:25,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:25,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:25,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:26,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:13:26,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:13:26,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:28,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:28,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:28,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:28,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:13:28,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:13:28,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:29,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:29,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:29,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:29,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:13:29,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:13:29,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:30,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:30,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:30,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:30,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:13:30,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:13:30,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:30,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:30,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:30,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:31,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:13:31,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:13:31,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:31,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:31,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:31,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:31,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:13:31,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:13:31,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:32,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:32,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:32,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:32,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:13:32,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:13:32,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:35,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:35,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:35,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:35,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:13:35,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:13:35,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:35,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:35,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:35,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:35,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:13:35,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:13:35,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:38,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:38,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:38,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:38,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:13:38,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:13:38,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:40,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:40,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:40,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:40,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s
+2025-10-02 05:13:40,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image)
+2025-10-02 05:13:40,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:41,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:41,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:41,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:41,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:13:41,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:13:41,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:41,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:41,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:41,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:42,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:13:42,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:13:42,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:43,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:43,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:43,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:43,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:13:43,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:13:43,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:43,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:43,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:44,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:44,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:13:44,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:13:44,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:44,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:44,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:44,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:44,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:13:44,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:13:44,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:51,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:51,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:51,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:51,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:13:51,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:13:51,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:13:56,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:13:56,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:13:56,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:13:56,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:13:56,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:13:56,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:01,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:01,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:01,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:01,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:14:01,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:14:01,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:02,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:02,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:02,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:02,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:14:02,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:14:02,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:03,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:03,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:03,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:03,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:14:03,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:14:03,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:04,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:04,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:04,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:04,367 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:14:04,367 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:14:04,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:04,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:04,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:05,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:05,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:14:05,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:14:05,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:06,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:06,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:06,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:06,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:14:06,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:14:06,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:07,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:07,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:07,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:07,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:14:07,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:14:07,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:10,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:10,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:10,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:10,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:14:10,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:14:10,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:11,190 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:14:11,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:14:11,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:14:11,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s
+2025-10-02 05:14:11,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image)
+2025-10-02 05:14:11,463 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:14:11,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:11,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:11,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:12,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:14:12,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:14:12,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:12,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:12,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:12,911 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:13,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:14:13,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:14:13,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:14,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:14,339 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:14,412 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.761
+2025-10-02 05:14:14,412 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 05:14:14,413 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:14:16,014 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:16,034 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:16,109 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.608
+2025-10-02 05:14:16,109 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:14:16,109 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:14:16,762 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:16,787 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:16,862 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.868
+2025-10-02 05:14:16,862 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:14:16,862 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:14:17,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:17,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:17,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:17,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:14:17,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:14:17,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:17,808 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:17,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:17,895 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.350
+2025-10-02 05:14:17,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 05:14:17,896 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 05:14:17,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:17,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:17,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:18,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:14:18,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:14:18,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:18,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:18,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:18,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:18,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:14:18,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:14:18,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:20,367 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:20,392 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(883, 790, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:20,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.697
+2025-10-02 05:14:20,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:14:20,470 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:14:20,749 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:20,782 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:20,856 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.668
+2025-10-02 05:14:20,856 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:14:20,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:14:21,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:21,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:21,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:21,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:14:21,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:14:21,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:21,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:21,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:21,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:21,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:14:21,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:14:21,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:21,554 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:21,569 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:21,642 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.747
+2025-10-02 05:14:21,642 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 05:14:21,643 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:14:23,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:23,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:23,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:23,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:14:23,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:14:23,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:25,172 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:25,200 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 736, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:25,279 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.864
+2025-10-02 05:14:25,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:14:25,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:14:26,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:26,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:26,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:26,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:14:26,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:14:26,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:28,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:28,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:28,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:29,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:14:29,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:14:29,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:30,166 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:14:30,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:14:30,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:14:30,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s
+2025-10-02 05:14:30,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image)
+2025-10-02 05:14:30,451 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:14:31,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:31,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:31,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:31,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:14:31,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:14:31,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:35,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:35,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:35,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:35,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:14:35,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:14:35,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:37,327 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:37,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:37,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:37,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:14:37,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:14:37,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:37,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:37,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:37,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:37,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:14:37,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:14:37,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:40,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:40,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:40,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:40,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:14:40,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:14:40,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:42,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:42,953 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:42,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:43,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:14:43,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:14:43,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:44,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:44,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:44,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:44,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:14:44,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:14:44,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:45,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:45,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:45,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:45,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:14:45,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:14:45,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:49,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:49,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:49,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:49,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:14:49,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:14:49,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:49,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:49,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:49,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:49,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:14:49,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:14:49,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:51,670 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:14:51,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:14:51,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:14:51,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s
+2025-10-02 05:14:51,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image)
+2025-10-02 05:14:51,939 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:14:53,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:53,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:53,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:53,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:14:53,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:14:53,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:55,592 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:55,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:55,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:55,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:14:55,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:14:55,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:14:55,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:14:55,821 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:14:55,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.136
+2025-10-02 05:14:55,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:14:55,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:14:58,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:14:58,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:14:58,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:14:58,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:14:58,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:14:58,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:01,290 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:15:01,319 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:15:01,396 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=157.860
+2025-10-02 05:15:01,396 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 05:15:01,396 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:15:01,722 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:15:01,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:15:01,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:15:02,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s
+2025-10-02 05:15:02,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image)
+2025-10-02 05:15:02,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:15:02,336 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:15:02,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:15:02,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:15:02,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s
+2025-10-02 05:15:02,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image)
+2025-10-02 05:15:02,603 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:15:02,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:02,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:02,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:03,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:15:03,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:15:03,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:05,776 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:15:05,799 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:15:05,882 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.340
+2025-10-02 05:15:05,882 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 05:15:05,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:15:06,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:06,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:06,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:06,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:15:06,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:15:06,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:06,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:06,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:06,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:06,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:15:06,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:15:06,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:08,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:08,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:08,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:08,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:15:08,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:15:08,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:09,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:09,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:09,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:09,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:15:09,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:15:09,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:11,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:11,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:11,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:11,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:15:11,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:15:11,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:11,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:11,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:11,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:12,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:15:12,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:15:12,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:14,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:14,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:14,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:14,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:15:14,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:15:14,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:15,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:15,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:15,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:15,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:15:15,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:15:15,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:16,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:16,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:16,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:16,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:15:16,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:15:16,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:18,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:18,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:18,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:18,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:15:18,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:15:18,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:20,707 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:15:20,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:15:20,772 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:15:21,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s
+2025-10-02 05:15:21,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image)
+2025-10-02 05:15:21,006 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:15:22,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:22,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:22,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:23,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:15:23,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:15:23,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:27,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:27,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:27,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:28,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:15:28,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:15:28,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:28,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:28,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:28,409 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:28,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:15:28,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:15:28,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:30,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:30,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:30,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:30,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:15:30,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:15:30,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:31,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:31,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:31,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:31,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:15:31,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:15:31,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:35,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:35,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:35,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:35,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:15:35,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:15:35,644 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:40,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:40,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:40,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:40,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:15:40,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:15:40,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:41,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:41,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:41,981 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:42,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:15:42,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:15:42,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:44,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:44,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:44,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:44,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:15:44,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:15:44,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:46,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:46,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:46,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:46,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:15:46,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:15:46,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:47,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:47,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:47,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:47,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:15:47,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:15:47,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:49,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:49,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:49,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:49,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:15:49,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:15:49,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:50,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:50,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:50,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:50,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:15:50,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:15:50,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:53,933 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:15:53,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:15:53,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:15:54,252 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s
+2025-10-02 05:15:54,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.159s/image)
+2025-10-02 05:15:54,253 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:15:54,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:54,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:54,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:54,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:15:54,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:15:54,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:15:57,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:15:57,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:15:57,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:15:57,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:15:57,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:15:57,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:02,596 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:16:02,619 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:16:02,705 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.366
+2025-10-02 05:16:02,705 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 05:16:02,706 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:16:03,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:03,609 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:03,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:03,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:16:03,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:16:03,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:11,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:11,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:11,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:11,438 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:16:11,438 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:16:11,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:12,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:12,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:12,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:12,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:16:12,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:16:12,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:18,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:18,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:18,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:18,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:16:18,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:16:18,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:19,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:19,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:19,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:20,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:16:20,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:16:20,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:21,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:21,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:21,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:21,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:16:21,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:16:21,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:22,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:16:22,823 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:16:22,901 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.746
+2025-10-02 05:16:22,901 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:16:22,901 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:16:24,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:24,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:24,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:24,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:16:24,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:16:24,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:24,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:24,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:24,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:24,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:16:24,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:16:24,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:26,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:26,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:26,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:26,162 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:16:26,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:16:26,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:27,153 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:16:27,176 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:16:27,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.089
+2025-10-02 05:16:27,257 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:16:27,259 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:16:28,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:28,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:28,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:28,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:16:28,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:16:28,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:29,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:29,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:29,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:29,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:16:29,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:16:29,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:30,963 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:16:30,990 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:16:31,077 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.770
+2025-10-02 05:16:31,078 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 05:16:31,078 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 05:16:32,195 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:16:32,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:16:32,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:16:32,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s
+2025-10-02 05:16:32,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image)
+2025-10-02 05:16:32,491 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:16:33,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:33,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:33,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:33,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:16:33,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:16:33,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:34,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:34,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:34,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:34,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:16:34,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:16:34,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:36,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:16:36,465 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(666, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:16:36,556 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.425
+2025-10-02 05:16:36,557 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:16:36,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:16:38,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:38,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:38,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:38,546 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:16:38,546 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:16:38,546 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:39,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:39,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:39,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:39,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:16:39,946 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:16:39,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:42,783 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:42,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:42,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:42,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:16:42,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:16:42,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:45,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:45,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:45,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:45,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:16:45,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:16:45,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:49,266 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:16:49,283 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:16:49,361 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=146.506
+2025-10-02 05:16:49,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:16:49,362 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:16:49,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:49,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:49,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:49,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:16:49,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:16:49,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:51,239 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:16:51,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:16:51,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:16:51,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s
+2025-10-02 05:16:51,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image)
+2025-10-02 05:16:51,520 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:16:52,759 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:16:52,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:16:52,863 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.053
+2025-10-02 05:16:52,864 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 05:16:52,865 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 05:16:56,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:56,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:56,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:56,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:16:56,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:16:56,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:56,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:16:56,642 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:16:56,729 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.349
+2025-10-02 05:16:56,730 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 05:16:56,731 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 05:16:57,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:57,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:57,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:57,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:16:57,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:16:57,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:58,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:58,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:58,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:58,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:16:58,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:16:58,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:16:58,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:16:58,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:16:58,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:16:58,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:16:58,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:16:58,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:03,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:03,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:04,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:04,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:17:04,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:17:04,160 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:04,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:04,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:04,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:04,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:17:04,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:17:04,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:05,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:05,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:05,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:05,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:17:05,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:17:05,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:11,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:11,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:11,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:11,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:17:11,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:17:11,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:16,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:16,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:16,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:16,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:17:16,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:17:16,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:21,062 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:17:21,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:17:21,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:17:21,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s
+2025-10-02 05:17:21,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image)
+2025-10-02 05:17:21,347 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:17:23,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:23,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:23,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:23,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:17:23,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:17:23,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:25,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:25,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:25,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:25,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:17:25,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:17:25,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:26,067 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:26,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:26,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:26,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:17:26,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:17:26,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:27,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:27,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:27,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:28,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:17:28,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:17:28,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:28,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:28,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:28,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:28,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:17:28,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:17:28,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:29,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:29,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:29,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:29,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:17:29,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:17:29,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:33,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:33,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:33,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:33,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:17:33,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:17:33,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:33,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:33,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:33,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:33,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:17:33,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:17:33,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:34,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:34,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:34,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:34,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s
+2025-10-02 05:17:34,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image)
+2025-10-02 05:17:34,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:34,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:34,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:34,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:34,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:17:34,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:17:34,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:35,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:35,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:35,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:35,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:17:35,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:17:35,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:38,479 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:17:38,502 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:17:38,586 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.020
+2025-10-02 05:17:38,586 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:17:38,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:17:38,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:38,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:38,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:38,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:17:38,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:17:38,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:39,899 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:39,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:39,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:40,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 05:17:40,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 05:17:40,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:40,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:40,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:40,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:40,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:17:40,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:17:40,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:40,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:40,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:40,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:40,912 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:17:40,912 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:17:40,913 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:42,819 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:42,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:42,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:42,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:17:42,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:17:42,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:44,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:44,688 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:44,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:44,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:17:44,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:17:44,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:48,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:48,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:48,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:48,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:17:48,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:17:48,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:49,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:49,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:49,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:49,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s
+2025-10-02 05:17:49,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image)
+2025-10-02 05:17:49,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:50,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:50,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:50,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:50,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:17:50,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:17:50,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:51,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:51,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:51,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:51,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:17:51,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:17:51,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:53,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:53,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:53,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:53,610 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:17:53,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:17:53,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:53,942 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:17:53,972 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:17:54,056 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.793
+2025-10-02 05:17:54,057 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:17:54,059 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 05:17:55,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:55,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:55,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:55,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:17:55,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:17:55,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:57,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:57,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:57,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:57,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:17:57,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:17:57,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:57,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:17:57,818 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:17:57,910 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.572
+2025-10-02 05:17:57,910 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:17:57,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 05:17:58,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:58,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:58,174 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:58,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:17:58,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:17:58,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:58,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:58,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:58,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:58,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:17:58,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:17:58,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:17:59,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:17:59,459 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:17:59,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:17:59,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:17:59,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:17:59,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:01,667 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:18:01,700 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:18:01,793 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.854
+2025-10-02 05:18:01,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 05:18:01,795 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s
+2025-10-02 05:18:01,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:01,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:02,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:02,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:18:02,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:18:02,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:02,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:02,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:02,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:02,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:18:02,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:18:02,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:03,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:03,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:03,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:04,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:18:04,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:18:04,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:08,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:08,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:08,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:08,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:18:08,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:18:08,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:09,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:09,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:09,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:09,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:18:09,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:18:09,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:12,005 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:18:12,032 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(802, 802, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:18:12,116 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=120.501
+2025-10-02 05:18:12,117 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:18:12,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:18:12,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:12,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:12,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:12,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:18:12,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:18:12,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:13,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:13,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:13,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:13,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:18:13,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:18:13,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:16,452 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:16,453 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:16,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:16,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:18:16,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:18:16,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:16,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:16,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:16,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:16,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:18:16,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:18:16,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:18,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:18,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:18,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:18,692 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:18:18,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:18:18,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:22,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:22,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:22,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:22,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:18:22,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:18:22,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:22,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:22,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:22,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:22,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:18:22,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:18:22,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:24,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:24,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:24,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:24,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 05:18:24,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 05:18:24,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:24,682 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:18:24,701 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:18:24,783 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.270
+2025-10-02 05:18:24,784 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:18:24,784 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:18:25,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:25,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:25,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:25,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:18:25,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:18:25,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:25,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:25,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:25,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:25,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:18:25,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:18:25,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:29,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:29,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:29,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:29,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:18:29,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:18:29,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:30,340 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:18:30,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:18:30,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:18:30,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s
+2025-10-02 05:18:30,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image)
+2025-10-02 05:18:30,631 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:18:30,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:30,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:30,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:31,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:18:31,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:18:31,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:34,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:34,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:34,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:35,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:18:35,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:18:35,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:35,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:35,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:35,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:35,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:18:35,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:18:35,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:36,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:36,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:36,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:36,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:18:36,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:18:36,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:39,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:39,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:39,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:39,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:18:39,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:18:39,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:40,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:40,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:40,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:40,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:18:40,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:18:40,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:40,239 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:18:40,265 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:18:40,341 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=234.682
+2025-10-02 05:18:40,342 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:18:40,342 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:18:41,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:41,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:41,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:41,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:18:41,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:18:41,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:45,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:45,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:45,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:45,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:18:45,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:18:45,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:45,543 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:18:45,564 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:18:45,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.171
+2025-10-02 05:18:45,634 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s
+2025-10-02 05:18:45,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s
+2025-10-02 05:18:46,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:46,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:46,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:46,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:18:46,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:18:46,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:49,307 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:18:49,325 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:18:49,399 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=200.109
+2025-10-02 05:18:49,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:18:49,400 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:18:50,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:50,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:50,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:50,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:18:50,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:18:50,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:51,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:51,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:51,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:51,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:18:51,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:18:51,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:52,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:52,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:53,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:53,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:18:53,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:18:53,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:55,888 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:55,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:55,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:56,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:18:56,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:18:56,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:56,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:56,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:18:56,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:18:56,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 05:18:56,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 05:18:56,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:18:59,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:18:59,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:00,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:00,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:19:00,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:19:00,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:00,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:00,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:00,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:00,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s
+2025-10-02 05:19:00,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image)
+2025-10-02 05:19:00,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:02,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:02,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:02,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:02,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:19:02,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:19:02,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:03,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:03,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:03,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:03,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:19:03,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:19:03,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:04,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:04,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:04,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:04,422 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:19:04,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:19:04,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:09,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:09,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:09,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:09,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:19:09,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:19:09,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:11,050 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:11,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:11,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:11,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:19:11,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:19:11,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:16,739 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:16,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:16,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:16,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:19:16,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:19:16,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:18,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:18,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:18,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:18,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:19:18,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:19:18,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:19,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:19,876 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:19,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:20,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:19:20,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:19:20,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:20,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:20,994 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:21,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:21,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:19:21,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:19:21,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:22,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:22,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:22,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:22,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:19:22,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:19:22,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:23,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:23,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:23,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:23,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:19:23,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:19:23,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:25,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:25,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:25,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:25,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.198s
+2025-10-02 05:19:25,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.198s (avg: 0.198s/image)
+2025-10-02 05:19:25,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:25,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:25,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:25,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:25,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 05:19:25,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 05:19:25,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:26,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:26,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:27,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:27,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:19:27,160 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:19:27,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:27,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:27,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:27,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:27,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:19:27,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:19:27,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:30,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:30,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:30,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:30,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:19:30,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:19:30,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:30,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:30,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:30,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:30,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:19:30,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:19:30,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:32,806 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:19:32,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:19:32,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:19:33,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s
+2025-10-02 05:19:33,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image)
+2025-10-02 05:19:33,115 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:19:33,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:33,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:33,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:33,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:19:33,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:19:33,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:35,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:35,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:35,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:35,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:19:35,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:19:35,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:36,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:36,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:36,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:36,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s
+2025-10-02 05:19:36,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image)
+2025-10-02 05:19:36,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:36,901 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:19:36,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:19:37,027 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=71.648
+2025-10-02 05:19:37,028 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:19:37,029 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s
+2025-10-02 05:19:38,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:19:38,422 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:19:38,510 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=130.799
+2025-10-02 05:19:38,511 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 05:19:38,511 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 05:19:38,665 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:19:38,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:19:38,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:19:38,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s
+2025-10-02 05:19:38,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image)
+2025-10-02 05:19:38,967 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:19:41,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:41,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:41,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:41,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s
+2025-10-02 05:19:41,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image)
+2025-10-02 05:19:41,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:41,968 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:19:42,008 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:19:42,098 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.446
+2025-10-02 05:19:42,099 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 05:19:42,100 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:19:43,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:43,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:43,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:43,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:19:43,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:19:43,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:43,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:43,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:43,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:43,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:19:43,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:19:43,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:46,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:46,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:46,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:46,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:19:46,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:19:46,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:47,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:47,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:47,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:47,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 05:19:47,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 05:19:47,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:50,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:50,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:50,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:50,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:19:50,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:19:50,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:50,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:50,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:50,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:50,601 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:19:50,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:19:50,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:50,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:50,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:51,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:51,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:19:51,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:19:51,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:54,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:54,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:54,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:54,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:19:54,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:19:54,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:54,707 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:54,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:54,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:54,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:19:54,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:19:54,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:56,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:56,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:56,736 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:56,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:19:56,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:19:56,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:57,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:57,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:57,278 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:57,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:19:57,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:19:57,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:58,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:58,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:58,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:58,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:19:58,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:19:58,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:19:58,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:19:58,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:19:58,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:19:58,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:19:58,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:19:58,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:05,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:05,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:05,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:05,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:20:05,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:20:05,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:05,989 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:20:06,026 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:20:06,113 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.656
+2025-10-02 05:20:06,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 05:20:06,116 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:20:06,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:06,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:06,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:06,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:20:06,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:20:06,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:09,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:09,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:09,432 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:09,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:20:09,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:20:09,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:10,241 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:20:10,268 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:20:10,353 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.326
+2025-10-02 05:20:10,353 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 05:20:10,355 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 05:20:11,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:11,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:11,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:11,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:20:11,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:20:11,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:12,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:12,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:12,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:12,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:20:12,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:20:12,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:13,955 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:20:13,980 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:20:14,068 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=193.965
+2025-10-02 05:20:14,068 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 05:20:14,069 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 05:20:15,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:15,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:15,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:15,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:20:15,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:20:15,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:17,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:17,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:17,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:17,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 05:20:17,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 05:20:17,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:21,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:21,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:21,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:21,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:20:21,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:20:21,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:26,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:26,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:26,372 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:26,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:20:26,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:20:26,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:26,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:26,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:26,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:27,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:20:27,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:20:27,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:30,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:30,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:30,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:30,457 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:20:30,458 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:20:30,458 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:31,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:31,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:31,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:31,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:20:31,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:20:31,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:32,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:32,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:32,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:32,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:20:32,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:20:32,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:36,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:36,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:36,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:36,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:20:36,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:20:36,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:37,706 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:20:37,730 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:20:37,810 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.303
+2025-10-02 05:20:37,810 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:20:37,810 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:20:41,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:41,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:41,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:41,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:20:41,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:20:41,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:41,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:41,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:42,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:42,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:20:42,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:20:42,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:42,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:42,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:42,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:42,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s
+2025-10-02 05:20:42,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image)
+2025-10-02 05:20:42,621 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:42,936 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:20:42,959 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:20:43,031 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=76.897
+2025-10-02 05:20:43,031 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 05:20:43,031 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 05:20:44,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:44,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:44,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:44,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:20:44,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:20:44,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:46,628 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:46,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:46,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:46,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:20:46,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:20:46,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:46,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:46,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:46,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:47,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:20:47,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:20:47,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:47,238 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:20:47,257 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:20:47,325 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.619
+2025-10-02 05:20:47,325 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s
+2025-10-02 05:20:47,325 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s
+2025-10-02 05:20:48,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:48,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:48,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:48,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:20:48,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:20:48,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:51,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:51,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:51,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:51,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:20:51,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:20:51,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:52,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:52,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:52,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:52,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:20:52,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:20:52,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:58,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:58,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:58,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:58,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:20:58,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:20:58,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:59,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:20:59,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:20:59,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:20:59,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:20:59,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:20:59,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:20:59,967 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:20:59,987 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:21:00,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.550
+2025-10-02 05:21:00,070 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 05:21:00,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:21:01,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:01,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:01,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:01,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:21:01,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:21:01,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:03,919 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:21:03,943 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:21:04,033 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.475
+2025-10-02 05:21:04,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 05:21:04,035 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:21:04,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:04,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:04,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:04,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:21:04,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:21:04,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:05,021 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:05,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:05,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:05,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:21:05,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:21:05,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:08,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:08,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:08,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:08,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:21:08,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:21:08,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:11,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:11,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:11,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:11,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:21:11,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:21:11,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:11,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:11,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:12,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:12,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:21:12,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:21:12,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:15,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:15,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:15,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:16,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:21:16,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:21:16,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:16,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:16,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:16,671 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:16,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:21:16,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:21:16,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:19,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:19,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:19,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:19,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:21:19,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:21:19,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:19,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:19,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:19,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:20,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:21:20,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:21:20,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:21,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:21,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:21,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:21,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:21:21,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:21:21,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:22,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:22,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:22,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:22,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:21:22,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:21:22,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:28,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:28,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:28,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:28,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:21:28,461 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:21:28,461 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:30,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:30,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:30,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:30,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:21:30,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:21:30,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:33,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:33,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:33,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:33,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:21:33,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:21:33,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:35,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:35,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:35,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:35,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:21:35,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:21:35,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:37,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:37,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:37,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:37,693 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:21:37,693 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:21:37,693 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:38,030 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:21:38,049 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:21:38,132 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.024
+2025-10-02 05:21:38,132 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:21:38,133 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 05:21:39,554 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:39,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:39,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:39,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:21:39,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:21:39,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:41,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:41,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:41,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:41,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:21:41,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:21:41,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:42,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:42,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:42,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:42,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:21:42,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:21:42,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:43,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:43,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:43,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:43,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:21:43,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:21:43,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:43,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:43,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:43,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:44,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:21:44,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:21:44,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:45,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:45,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:45,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:45,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:21:45,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:21:45,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:46,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:46,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:46,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:46,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:21:46,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:21:46,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:50,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:50,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:50,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:50,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:21:50,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:21:50,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:51,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:51,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:51,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:51,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:21:51,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:21:51,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:52,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:52,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:52,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:52,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:21:52,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:21:52,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:53,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:53,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:53,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:53,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:21:53,219 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:21:53,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:56,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:56,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:56,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:56,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:21:56,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:21:56,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:57,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:57,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:57,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:57,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:21:57,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:21:57,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:21:58,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:21:58,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:21:59,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:21:59,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:21:59,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:21:59,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:01,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:01,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:01,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:01,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:22:01,307 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:22:01,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:02,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:02,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:02,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:02,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:22:02,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:22:02,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:02,904 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:22:02,932 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:22:03,016 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.216
+2025-10-02 05:22:03,016 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:22:03,018 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:22:07,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:07,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:07,475 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:07,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:22:07,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:22:07,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:07,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:07,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:08,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:08,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 05:22:08,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 05:22:08,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:09,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:09,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:09,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:09,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:22:09,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:22:09,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:11,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:22:11,556 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:22:11,653 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.575
+2025-10-02 05:22:11,654 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s
+2025-10-02 05:22:11,656 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s
+2025-10-02 05:22:12,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:12,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:12,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:12,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:22:12,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:22:12,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:12,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:12,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:12,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:12,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:22:12,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:22:12,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:14,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:14,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:14,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:14,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:22:14,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:22:14,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:14,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:14,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:14,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:14,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:22:14,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:22:14,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:17,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:17,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:17,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:17,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:22:17,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:22:17,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:17,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:17,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:17,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:18,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 05:22:18,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 05:22:18,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:20,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:20,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:20,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:20,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:22:20,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:22:20,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:23,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:23,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:23,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:23,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:22:23,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:22:23,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:23,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:23,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:23,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:23,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:22:23,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:22:23,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:23,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:23,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:23,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:24,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:22:24,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:22:24,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:26,778 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:22:26,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:22:26,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:22:27,061 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 05:22:27,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 05:22:27,062 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:22:30,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:30,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:30,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:30,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:22:30,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:22:30,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:30,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:30,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:30,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:30,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:22:30,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:22:30,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:30,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:30,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:30,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:31,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:22:31,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:22:31,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:33,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:33,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:33,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:33,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:22:33,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:22:33,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:35,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:35,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:35,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:35,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:22:35,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:22:35,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:36,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:36,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:36,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:36,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:22:36,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:22:36,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:41,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:41,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:41,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:41,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:22:41,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:22:41,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:42,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:42,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:42,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:42,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:22:42,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:22:42,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:43,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:43,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:43,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:43,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:22:43,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:22:43,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:47,461 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:47,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:47,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:47,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:22:47,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:22:47,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:49,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:49,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:49,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:49,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:22:49,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:22:49,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:50,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:50,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:50,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:50,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:22:50,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:22:50,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:50,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:50,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:50,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:50,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:22:50,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:22:50,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:51,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:22:51,953 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:22:52,034 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.840
+2025-10-02 05:22:52,034 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:22:52,034 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:22:52,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:52,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:52,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:52,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:22:52,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:22:52,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:53,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:53,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:53,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:53,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:22:53,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:22:53,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:54,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:54,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:54,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:54,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:22:54,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:22:54,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:56,905 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:22:56,927 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:22:57,011 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.453
+2025-10-02 05:22:57,011 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:22:57,011 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 05:22:57,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:57,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:57,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:57,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:22:57,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:22:57,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:22:57,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:22:57,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:22:57,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:22:58,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:22:58,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:22:58,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:01,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:01,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:01,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:02,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:23:02,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:23:02,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:02,416 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:23:02,451 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:23:02,539 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.444
+2025-10-02 05:23:02,539 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 05:23:02,540 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s
+2025-10-02 05:23:02,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:02,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:02,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:02,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 05:23:02,815 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 05:23:02,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:05,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:05,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:05,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:05,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:23:05,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:23:05,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:06,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:06,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:06,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:06,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:23:06,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:23:06,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:08,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:08,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:08,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:08,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:23:08,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:23:08,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:10,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:10,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:10,282 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:10,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:23:10,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:23:10,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:11,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:11,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:11,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:11,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:23:11,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:23:11,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:12,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:12,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:12,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:12,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:23:12,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:23:12,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:12,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:12,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:12,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:12,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s
+2025-10-02 05:23:12,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image)
+2025-10-02 05:23:12,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:16,779 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:23:16,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:23:16,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:23:17,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.309s
+2025-10-02 05:23:17,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.309s (avg: 0.155s/image)
+2025-10-02 05:23:17,090 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:23:17,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:17,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:17,586 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:17,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:23:17,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:23:17,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:17,875 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:17,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:17,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:18,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:23:18,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:23:18,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:20,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:20,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:20,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:20,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:23:20,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:23:20,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:21,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:21,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:21,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:21,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:23:21,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:23:21,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:23,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:23,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:23,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:23,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 05:23:23,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 05:23:23,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:24,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:24,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:24,277 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:24,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:23:24,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:23:24,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:24,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:24,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:25,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:25,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:23:25,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:23:25,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:27,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:27,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:27,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:27,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s
+2025-10-02 05:23:27,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image)
+2025-10-02 05:23:27,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:27,816 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:23:27,837 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:23:27,915 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.138
+2025-10-02 05:23:27,916 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:23:27,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:23:28,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:28,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:28,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:28,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:23:28,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:23:28,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:30,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:30,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:30,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:30,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:23:30,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:23:30,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:30,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:30,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:30,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:31,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:23:31,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:23:31,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:31,460 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:23:31,478 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:23:31,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.561
+2025-10-02 05:23:31,550 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 05:23:31,550 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 05:23:33,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:33,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:33,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:34,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:23:34,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:23:34,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:34,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:34,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:34,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:34,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:23:34,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:23:34,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:34,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:34,528 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:34,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:34,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s
+2025-10-02 05:23:34,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image)
+2025-10-02 05:23:34,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:35,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:23:35,084 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:23:35,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.377
+2025-10-02 05:23:35,156 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 05:23:35,156 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 05:23:35,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:35,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:35,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:35,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:23:35,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:23:35,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:36,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:36,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:36,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:36,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:23:36,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:23:36,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:40,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:40,260 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:40,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:40,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:23:40,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:23:40,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:40,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:40,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:40,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:40,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:23:40,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:23:40,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:42,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:42,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:42,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:42,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:23:42,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:23:42,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:42,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:42,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:42,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:42,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:23:42,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:23:42,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:44,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:44,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:44,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:44,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:23:44,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:23:44,892 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:45,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:45,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:45,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:45,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:23:45,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:23:45,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:48,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:48,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:48,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:48,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:23:48,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:23:48,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:52,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:52,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:52,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:52,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:23:52,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:23:52,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:54,835 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:23:54,856 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:23:54,930 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.145
+2025-10-02 05:23:54,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:23:54,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:23:55,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:55,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:55,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:56,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:23:56,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:23:56,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:57,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:57,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:57,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:57,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 05:23:57,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 05:23:57,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:57,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:57,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:23:57,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:23:57,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 05:23:57,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 05:23:57,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:23:58,462 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:23:58,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:23:58,563 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.260
+2025-10-02 05:23:58,563 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:23:58,563 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:23:59,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:23:59,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:00,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:00,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:24:00,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:24:00,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:02,679 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:24:02,710 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:24:02,789 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.151
+2025-10-02 05:24:02,790 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:24:02,790 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:24:03,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:03,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:03,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:03,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:24:03,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:24:03,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:04,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:04,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:04,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:04,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:24:04,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:24:04,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:09,074 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:24:09,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:24:09,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:24:09,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s
+2025-10-02 05:24:09,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image)
+2025-10-02 05:24:09,362 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:24:10,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:10,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:10,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:10,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:24:10,163 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:24:10,163 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:11,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:11,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:11,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:11,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:24:11,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:24:11,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:13,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:13,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:13,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:13,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:24:13,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:24:13,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:20,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:20,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:20,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:20,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:24:20,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:24:20,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:25,886 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:24:25,923 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:24:26,018 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.877
+2025-10-02 05:24:26,018 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s
+2025-10-02 05:24:26,020 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s
+2025-10-02 05:24:27,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:27,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:27,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:27,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:24:27,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:24:27,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:28,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:28,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:28,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:28,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:24:28,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:24:28,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:35,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:35,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:35,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:35,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:24:35,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:24:35,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:37,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:37,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:37,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:38,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:24:38,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:24:38,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:39,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:39,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:39,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:39,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:24:39,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:24:39,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:42,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:42,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:42,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:43,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:24:43,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:24:43,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:46,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:46,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:46,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:46,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:24:46,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:24:46,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:47,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:47,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:47,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:47,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:24:47,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:24:47,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:47,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:47,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:47,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:48,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:24:48,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:24:48,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:48,340 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:24:48,378 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:24:48,480 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.100
+2025-10-02 05:24:48,481 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s
+2025-10-02 05:24:48,482 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s
+2025-10-02 05:24:48,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:48,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:48,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:48,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 05:24:48,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 05:24:48,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:52,802 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:24:52,840 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:24:52,942 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.452
+2025-10-02 05:24:52,942 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s
+2025-10-02 05:24:52,944 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s
+2025-10-02 05:24:53,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:53,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:53,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:53,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:24:53,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:24:53,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:24:58,593 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:24:58,648 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:24:58,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.281
+2025-10-02 05:24:58,753 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s
+2025-10-02 05:24:58,754 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s
+2025-10-02 05:24:59,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:24:59,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:24:59,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:24:59,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:24:59,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:24:59,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:00,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:00,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:00,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:00,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:25:00,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:25:00,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:06,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:06,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:06,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:07,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 05:25:07,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 05:25:07,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:09,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:09,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:09,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:09,809 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:25:09,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:25:09,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:13,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:13,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:13,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:13,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s
+2025-10-02 05:25:13,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image)
+2025-10-02 05:25:13,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:17,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:17,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:17,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:17,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:25:17,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:25:17,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:19,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:19,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:19,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:19,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:25:19,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:25:19,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:20,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:20,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:20,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:20,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:25:20,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:25:20,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:20,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:20,364 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:20,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:20,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:25:20,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:25:20,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:20,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:20,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:20,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:20,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:25:20,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:25:20,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:21,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:21,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:21,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:21,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:25:21,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:25:21,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:23,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:23,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:23,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:23,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:25:23,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:25:23,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:26,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:26,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:26,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:26,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:25:26,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:25:26,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:28,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:28,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:28,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:28,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:25:28,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:25:28,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:31,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:31,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:31,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:31,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:25:31,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:25:31,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:32,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:32,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:32,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:32,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:25:32,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:25:32,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:32,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:32,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:32,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:32,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 05:25:32,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 05:25:32,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:34,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:34,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:34,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:34,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:25:34,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:25:34,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:36,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:36,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:36,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:36,738 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:25:36,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:25:36,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:37,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:37,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:37,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:37,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:25:37,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:25:37,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:38,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:38,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:38,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:38,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:25:38,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:25:38,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:39,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:39,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:39,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:39,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:25:39,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:25:39,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:40,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:40,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:40,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:40,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:25:40,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:25:40,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:41,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:41,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:41,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:41,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:25:41,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:25:41,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:42,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:42,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:42,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:42,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:25:42,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:25:42,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:44,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:25:44,530 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:25:44,621 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.185
+2025-10-02 05:25:44,621 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 05:25:44,623 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:25:45,549 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:45,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:45,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:45,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:25:45,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:25:45,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:46,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:46,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:46,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:47,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:25:47,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:25:47,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:47,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:47,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:47,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:47,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:25:47,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:25:47,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:48,031 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:25:48,057 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:25:48,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=28.316
+2025-10-02 05:25:48,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s
+2025-10-02 05:25:48,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s
+2025-10-02 05:25:48,469 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:25:48,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:25:48,511 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:25:48,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s
+2025-10-02 05:25:48,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image)
+2025-10-02 05:25:48,737 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:25:49,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:49,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:49,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:50,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:25:50,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:25:50,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:51,300 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:25:51,330 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:25:51,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.002
+2025-10-02 05:25:51,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s
+2025-10-02 05:25:51,426 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s
+2025-10-02 05:25:52,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:52,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:52,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:52,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:25:52,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:25:52,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:53,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:53,474 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:53,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:53,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:25:53,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:25:53,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:55,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:55,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:55,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:55,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:25:55,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:25:55,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:55,664 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:25:55,687 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:25:55,768 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.322
+2025-10-02 05:25:55,768 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:25:55,769 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:25:56,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:56,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:56,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:56,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:25:56,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:25:56,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:57,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:57,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:57,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:58,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:25:58,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:25:58,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:25:59,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:25:59,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:25:59,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:25:59,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:25:59,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:25:59,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:03,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:03,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:03,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:03,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:26:03,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:26:03,611 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:04,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:26:04,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:26:04,191 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=161.534
+2025-10-02 05:26:04,192 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s
+2025-10-02 05:26:04,193 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.106s
+2025-10-02 05:26:04,687 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:04,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:04,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:04,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:26:04,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:26:04,843 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:05,202 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:05,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:05,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:05,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:26:05,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:26:05,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:08,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:08,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:08,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:08,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:26:08,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:26:08,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:08,392 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:26:08,409 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:26:08,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.628
+2025-10-02 05:26:08,490 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:26:08,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:26:11,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:11,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:12,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:12,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:26:12,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:26:12,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:13,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:13,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:13,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:14,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:26:14,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:26:14,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:14,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:14,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:14,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:14,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:26:14,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:26:14,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:17,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:17,057 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:17,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:17,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:26:17,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:26:17,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:20,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:20,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:20,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:21,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:26:21,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:26:21,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:21,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:21,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:21,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:21,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:26:21,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:26:21,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:22,792 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:26:22,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:26:22,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:26:23,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s
+2025-10-02 05:26:23,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image)
+2025-10-02 05:26:23,078 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:26:23,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:23,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:23,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:23,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:26:23,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:26:23,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:27,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:27,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:27,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:27,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:26:27,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:26:27,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:27,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:27,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:27,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:28,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:26:28,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:26:28,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:29,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:29,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:29,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:29,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:26:29,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:26:29,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:32,265 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:26:32,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:26:32,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:26:32,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s
+2025-10-02 05:26:32,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.153s/image)
+2025-10-02 05:26:32,574 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:26:32,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:32,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:32,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:33,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:26:33,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:26:33,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:33,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:33,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:33,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:33,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:26:33,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:26:33,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:35,790 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:26:35,834 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:26:35,922 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=207.382
+2025-10-02 05:26:35,922 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 05:26:35,924 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:26:36,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:36,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:36,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:36,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:26:36,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:26:36,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:37,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:37,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:38,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:38,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s
+2025-10-02 05:26:38,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image)
+2025-10-02 05:26:38,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:39,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:39,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:39,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:39,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:26:39,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:26:39,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:40,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:40,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:40,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:41,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 05:26:41,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 05:26:41,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:41,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:41,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:41,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:42,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:26:42,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:26:42,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:42,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:42,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:42,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:43,115 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:26:43,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:26:43,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:44,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:44,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:44,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:44,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:26:44,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:26:44,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:45,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:45,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:45,397 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:45,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:26:45,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:26:45,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:46,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:46,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:46,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:46,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:26:46,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:26:46,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:46,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:46,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:46,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:46,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:26:46,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:26:46,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:47,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:47,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:47,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:47,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:26:47,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:26:47,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:47,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:47,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:47,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:47,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 05:26:47,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 05:26:47,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:49,651 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:49,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:49,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:49,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:26:49,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:26:49,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:53,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:53,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:53,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:53,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:26:53,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:26:53,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:54,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:54,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:54,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:54,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:26:54,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:26:54,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:54,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:54,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:54,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:54,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:26:54,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:26:54,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:55,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:55,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:55,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:55,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:26:55,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:26:55,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:56,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:56,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:56,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:56,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:26:56,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:26:56,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:56,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:56,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:56,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:56,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:26:56,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:26:56,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:26:59,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:26:59,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:26:59,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:26:59,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:26:59,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:26:59,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:00,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:00,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:00,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:00,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:27:00,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:27:00,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:01,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:01,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:01,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:01,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:27:01,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:27:01,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:03,375 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:27:03,401 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:27:03,493 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.340
+2025-10-02 05:27:03,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:27:03,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s
+2025-10-02 05:27:04,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:04,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:04,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:04,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:27:04,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:27:04,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:05,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:05,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:05,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:05,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:27:05,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:27:05,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:07,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:07,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:07,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:07,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:27:07,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:27:07,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:10,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:10,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:10,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:10,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:27:10,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:27:10,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:10,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:10,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:11,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:11,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:27:11,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:27:11,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:11,176 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:27:11,200 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:27:11,284 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=144.067
+2025-10-02 05:27:11,285 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:27:11,286 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:27:12,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:12,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:12,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:12,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:27:12,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:27:12,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:15,405 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:27:15,423 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:27:15,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.360
+2025-10-02 05:27:15,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 05:27:15,515 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:27:15,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:15,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:15,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:16,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:27:16,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:27:16,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:16,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:16,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:16,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:16,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:27:16,385 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:27:16,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:18,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:18,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:18,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:19,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:27:19,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:27:19,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:19,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:19,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:19,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:20,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:27:20,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:27:20,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:23,440 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:27:23,465 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:27:23,550 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=179.744
+2025-10-02 05:27:23,551 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 05:27:23,551 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:27:26,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:26,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:26,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:26,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:27:26,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:27:26,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:27,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:27,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:27,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:27,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:27:27,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:27:27,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:27,812 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:27:27,836 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:27:27,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.830
+2025-10-02 05:27:27,910 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 05:27:27,910 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:27:31,298 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:27:31,316 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:27:31,391 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.312
+2025-10-02 05:27:31,391 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:27:31,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:27:31,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:31,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:31,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:32,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:27:32,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:27:32,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:32,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:32,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:32,724 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:32,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:27:32,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:27:32,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:37,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:37,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:37,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:38,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:27:38,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:27:38,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:38,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:38,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:38,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:39,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:27:39,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:27:39,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:39,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:39,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:39,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:39,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:27:39,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:27:39,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:43,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:43,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:44,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:44,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:27:44,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:27:44,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:45,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:45,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:45,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:45,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:27:45,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:27:45,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:48,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:48,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:48,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:48,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:27:48,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:27:48,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:49,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:49,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:49,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:49,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:27:49,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:27:49,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:52,153 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:27:52,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:27:52,265 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.705
+2025-10-02 05:27:52,266 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 05:27:52,266 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:27:55,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:55,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:55,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:55,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:27:55,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:27:55,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:27:59,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:27:59,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:27:59,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:27:59,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:27:59,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:27:59,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:02,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:02,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:02,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:02,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:28:02,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:28:02,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:04,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:04,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:04,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:04,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:28:04,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:28:04,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:04,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:04,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:04,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:04,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:28:04,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:28:04,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:05,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:05,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:05,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:05,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:28:05,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:28:05,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:09,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:09,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:09,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:09,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:28:09,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:28:09,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:10,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:10,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:10,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:10,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:28:10,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:28:10,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:13,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:13,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:13,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:13,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:28:13,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:28:13,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:14,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:14,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:14,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:15,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:28:15,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:28:15,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:15,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:15,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:15,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:15,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:28:15,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:28:15,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:18,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:18,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:18,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:18,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:28:18,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:28:18,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:18,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:18,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:18,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:18,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:28:18,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:28:18,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:20,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:20,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:20,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:20,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:28:20,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:28:20,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:20,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:20,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:21,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:21,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 05:28:21,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 05:28:21,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:21,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:21,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:21,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:21,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:28:21,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:28:21,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:23,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:23,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:23,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:23,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:28:23,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:28:23,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:26,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:26,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:26,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:27,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s
+2025-10-02 05:28:27,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image)
+2025-10-02 05:28:27,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:28,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:28,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:28,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:28,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:28:28,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:28:28,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:28,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:28,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:28,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:28,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:28:28,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:28:28,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:28,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:28,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:28,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:28,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 05:28:28,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 05:28:28,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:29,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:29,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:29,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:29,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:28:29,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:28:29,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:32,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:32,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:32,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:32,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:28:32,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:28:32,981 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:33,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:33,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:33,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:33,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:28:33,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:28:33,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:34,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:34,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:34,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:34,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:28:34,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:28:34,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:35,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:35,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:35,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:35,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:28:35,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:28:35,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:38,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:38,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:38,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:38,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:28:38,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:28:38,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:39,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:39,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:39,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:39,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:28:39,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:28:39,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:40,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:40,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:40,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:40,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:28:40,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:28:40,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:43,235 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:28:43,257 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(900, 900, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:28:43,350 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.614
+2025-10-02 05:28:43,350 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 05:28:43,352 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s
+2025-10-02 05:28:43,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:43,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:43,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:43,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:28:43,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:28:43,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:46,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:46,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:46,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:46,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:28:46,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:28:46,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:46,563 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:28:46,595 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:28:46,687 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=201.594
+2025-10-02 05:28:46,687 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:28:46,688 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:28:46,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:46,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:46,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:47,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:28:47,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:28:47,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:48,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:48,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:48,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:48,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:28:48,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:28:48,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:49,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:49,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:49,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:49,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:28:49,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:28:49,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:52,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:52,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:52,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:52,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:28:52,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:28:52,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:52,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:52,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:52,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:52,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:28:52,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:28:52,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:53,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:53,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:53,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:53,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:28:53,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:28:53,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:53,393 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:28:53,416 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:28:53,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.448
+2025-10-02 05:28:53,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:28:53,494 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:28:54,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:54,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:54,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:55,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:28:55,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:28:55,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:57,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:57,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:57,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:57,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:28:57,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:28:57,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:57,265 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:28:57,302 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:28:57,390 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.607
+2025-10-02 05:28:57,390 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 05:28:57,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:28:58,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:58,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:58,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:58,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:28:58,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:28:58,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:28:58,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:28:58,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:28:58,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:28:58,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:28:58,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:28:58,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:02,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:02,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:02,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:02,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:29:02,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:29:02,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:02,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:02,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:02,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:02,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:29:02,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:29:02,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:03,684 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:29:03,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:29:03,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:29:03,989 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s
+2025-10-02 05:29:03,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image)
+2025-10-02 05:29:03,989 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:29:04,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:04,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:04,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:04,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:29:04,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:29:04,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:04,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:04,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:04,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:05,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:29:05,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:29:05,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:07,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:07,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:07,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:07,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:29:07,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:29:07,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:07,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:07,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:07,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:07,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:29:07,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:29:07,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:09,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:09,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:09,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:10,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 05:29:10,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 05:29:10,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:10,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:10,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:10,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:10,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:29:10,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:29:10,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:11,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:11,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:11,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:11,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:29:11,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:29:11,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:12,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:12,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:12,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:12,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:29:12,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:29:12,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:12,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:12,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:12,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:12,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:29:12,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:29:12,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:13,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:13,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:13,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:13,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:29:13,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:29:13,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:16,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:16,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:17,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:17,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:29:17,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:29:17,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:18,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:18,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:18,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:18,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:29:18,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:29:18,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:19,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:19,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:19,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:19,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:29:19,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:29:19,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:22,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:22,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:22,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:22,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:29:22,177 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:29:22,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:22,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:22,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:22,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:22,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:29:22,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:29:22,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:25,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:25,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:25,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:25,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:29:25,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:29:25,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:29,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:29,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:29,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:29,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s
+2025-10-02 05:29:29,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image)
+2025-10-02 05:29:29,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:29,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:29,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:30,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:30,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:29:30,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:29:30,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:32,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:32,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:32,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:32,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:29:32,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:29:32,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:33,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:33,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:33,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:33,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 05:29:33,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 05:29:33,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:34,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:34,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:34,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:34,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:29:34,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:29:34,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:35,049 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:29:35,088 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:29:35,178 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.964
+2025-10-02 05:29:35,178 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 05:29:35,181 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:29:38,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:38,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:38,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:38,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:29:38,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:29:38,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:39,866 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:29:39,888 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:29:39,972 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.775
+2025-10-02 05:29:39,972 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 05:29:39,972 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 05:29:42,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:42,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:42,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:42,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:29:42,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:29:42,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:43,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:43,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:43,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:43,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:29:43,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:29:43,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:43,435 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:29:43,462 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:29:43,555 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.416
+2025-10-02 05:29:43,556 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 05:29:43,557 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s
+2025-10-02 05:29:44,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:44,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:44,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:44,888 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:29:44,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:29:44,889 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:47,281 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:29:47,310 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:29:47,402 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.226
+2025-10-02 05:29:47,402 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 05:29:47,403 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:29:48,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:48,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:48,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:48,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:29:48,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:29:48,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:49,128 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:29:49,156 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:29:49,255 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.157
+2025-10-02 05:29:49,255 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s
+2025-10-02 05:29:49,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s
+2025-10-02 05:29:50,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:50,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:50,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:50,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:29:50,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:29:50,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:51,319 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:29:51,348 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:29:51,439 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.250
+2025-10-02 05:29:51,439 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 05:29:51,440 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:29:54,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:54,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:54,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:54,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:29:54,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:29:54,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:54,876 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:29:54,904 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:29:54,995 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.898
+2025-10-02 05:29:54,995 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 05:29:54,996 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:29:55,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:55,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:55,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:55,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:29:55,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:29:55,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:57,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:57,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:57,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:57,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 05:29:57,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 05:29:57,196 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:29:57,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:29:57,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:29:57,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:29:57,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:29:57,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:29:57,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:02,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:02,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:02,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:03,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:30:03,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:30:03,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:03,211 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:30:03,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:30:03,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:30:03,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s
+2025-10-02 05:30:03,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.139s/image)
+2025-10-02 05:30:03,491 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:30:05,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:05,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:05,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:05,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:30:05,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:30:05,219 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:08,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:08,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:08,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:08,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s
+2025-10-02 05:30:08,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image)
+2025-10-02 05:30:08,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:09,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:09,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:09,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:09,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:30:09,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:30:09,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:09,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:09,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:09,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:09,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:30:09,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:30:09,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:09,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:09,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:09,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:09,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:30:09,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:30:09,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:10,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:10,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:10,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:10,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 05:30:10,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 05:30:10,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:11,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:11,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:11,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:11,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:30:11,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:30:11,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:12,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:12,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:12,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:12,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:30:12,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:30:12,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:14,830 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:30:14,852 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:30:14,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.181
+2025-10-02 05:30:14,931 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:30:14,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:30:15,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:15,848 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:15,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:16,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:30:16,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:30:16,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:16,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:16,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:16,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:16,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:30:16,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:30:16,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:16,939 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:16,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:16,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:17,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:30:17,089 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:30:17,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:17,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:17,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:17,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:17,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:30:17,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:30:17,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:17,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:17,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:17,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:17,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:30:17,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:30:17,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:21,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:21,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:21,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:21,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:30:21,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:30:21,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:22,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:22,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:22,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:22,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:30:22,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:30:22,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:24,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:24,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:24,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:24,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:30:24,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:30:24,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:26,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:26,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:26,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:26,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:30:26,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:30:26,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:27,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:27,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:27,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:27,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:30:27,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:30:27,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:30,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:30,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:30,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:30,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:30:30,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:30:30,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:30,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:30,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:30,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:30,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:30:30,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:30:30,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:31,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:31,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:31,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:31,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:30:31,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:30:31,972 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:32,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:32,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:32,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:32,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:30:32,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:30:32,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:35,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:35,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:35,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:35,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:30:35,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:30:35,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:38,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:38,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:38,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:38,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:30:38,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:30:38,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:38,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:38,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:38,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:39,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:30:39,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:30:39,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:39,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:39,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:39,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:39,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:30:39,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:30:39,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:40,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:40,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:40,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:40,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:30:40,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:30:40,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:40,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:40,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:40,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:40,936 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:30:40,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:30:40,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:43,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:43,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:43,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:43,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:30:43,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:30:43,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:45,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:45,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:45,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:45,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:30:45,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:30:45,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:46,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:46,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:46,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:46,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:30:46,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:30:46,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:52,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:52,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:52,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:52,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:30:52,573 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:30:52,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:58,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:30:58,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:30:58,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:30:59,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:30:59,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:30:59,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:30:59,981 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:31:00,006 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:31:00,085 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.906
+2025-10-02 05:31:00,085 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:31:00,085 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:31:00,403 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:00,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:00,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:00,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:31:00,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:31:00,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:04,629 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:31:04,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:31:04,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.625
+2025-10-02 05:31:04,736 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 05:31:04,736 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:31:05,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:05,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:05,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:05,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:31:05,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:31:05,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:06,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:06,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:06,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:06,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:31:06,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:31:06,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:07,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:07,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:07,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:07,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s
+2025-10-02 05:31:07,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image)
+2025-10-02 05:31:07,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:08,736 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:31:08,754 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:31:08,837 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.687
+2025-10-02 05:31:08,837 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 05:31:08,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s
+2025-10-02 05:31:09,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:09,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:09,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:10,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:31:10,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:31:10,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:13,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:13,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:13,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:13,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:31:13,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:31:13,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:14,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:14,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:14,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:14,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:31:14,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:31:14,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:18,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:18,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:18,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:18,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:31:18,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:31:18,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:19,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:19,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:19,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:19,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:31:19,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:31:19,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:23,810 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:23,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:23,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:23,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:31:23,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:31:23,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:27,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:27,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:27,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:27,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:31:27,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:31:27,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:28,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:28,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:28,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:28,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:31:28,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:31:28,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:31,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:31,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:31,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:31,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s
+2025-10-02 05:31:31,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image)
+2025-10-02 05:31:31,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:34,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:34,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:34,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:34,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:31:34,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:31:34,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:36,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:36,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:36,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:36,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:31:36,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:31:36,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:40,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:40,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:40,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:40,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:31:40,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:31:40,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:41,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:41,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:41,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:41,730 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:31:41,731 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:31:41,731 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:42,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:42,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:42,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:43,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:31:43,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:31:43,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:43,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:43,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:43,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:43,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:31:43,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:31:43,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:44,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:44,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:44,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:44,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:31:44,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:31:44,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:45,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:45,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:45,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:46,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:31:46,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:31:46,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:49,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:49,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:49,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:49,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:31:49,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:31:49,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:51,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:51,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:51,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:51,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:31:51,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:31:51,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:56,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:56,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:56,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:56,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:31:56,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:31:56,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:56,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:56,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:56,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:57,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:31:57,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:31:57,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:57,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:57,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:57,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:57,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:31:57,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:31:57,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:31:58,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:31:58,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:31:58,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:31:59,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:31:59,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:31:59,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:02,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:02,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:02,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:02,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:32:02,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:32:02,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:03,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:03,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:03,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:03,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:32:03,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:32:03,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:03,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:03,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:03,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:03,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:32:03,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:32:03,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:04,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:04,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:04,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:04,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:32:04,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:32:04,247 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:05,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:05,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:05,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:05,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:32:05,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:32:05,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:06,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:06,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:06,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:06,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:32:06,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:32:06,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:09,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:09,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:09,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:09,434 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:32:09,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:32:09,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:13,030 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:32:13,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:32:13,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:32:13,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.323s
+2025-10-02 05:32:13,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.323s (avg: 0.161s/image)
+2025-10-02 05:32:13,354 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:32:14,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:14,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:14,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:14,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:32:15,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:32:15,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:16,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:16,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:16,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:16,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:32:16,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:32:16,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:18,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:18,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:18,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:18,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 05:32:18,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 05:32:18,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:18,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:18,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:18,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:18,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:32:18,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:32:18,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:20,095 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:20,096 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:20,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:20,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:32:20,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:32:20,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:20,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:20,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:20,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:20,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:32:20,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:32:20,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:22,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:22,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:22,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:22,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:32:22,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:32:22,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:25,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:25,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:25,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:25,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:32:25,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:32:25,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:25,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:25,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:25,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:26,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:32:26,064 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:32:26,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:26,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:26,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:26,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:26,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:32:26,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:32:26,371 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:26,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:26,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:26,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:26,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:32:26,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:32:26,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:28,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:28,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:28,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:29,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:32:29,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:32:29,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:30,398 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:30,419 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:30,502 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.416
+2025-10-02 05:32:30,502 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 05:32:30,502 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:32:30,537 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:30,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:30,627 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.352
+2025-10-02 05:32:30,627 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:32:30,628 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:32:31,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:31,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:31,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:31,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s
+2025-10-02 05:32:31,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image)
+2025-10-02 05:32:31,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:31,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:31,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:31,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:31,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:32:31,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:32:31,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:32,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:32,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:32,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:32,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:32:32,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:32:32,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:34,139 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:34,168 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:34,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.315
+2025-10-02 05:32:34,250 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:32:34,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:32:35,881 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:35,906 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:35,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=167.218
+2025-10-02 05:32:35,982 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 05:32:35,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:32:36,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:36,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:36,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:36,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:32:36,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:32:36,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:36,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:36,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:36,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:36,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:32:36,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:32:36,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:38,011 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:38,035 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:38,113 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=110.888
+2025-10-02 05:32:38,113 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:32:38,113 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:32:39,192 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:39,223 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:39,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.748
+2025-10-02 05:32:39,300 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:32:39,301 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:32:40,675 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:40,699 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:40,775 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.290
+2025-10-02 05:32:40,776 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:32:40,776 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:32:41,320 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:41,345 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:41,430 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.117
+2025-10-02 05:32:41,431 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 05:32:41,431 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:32:41,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:41,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:41,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:41,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:32:41,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:32:41,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:43,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:43,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:43,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:43,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:32:43,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:32:43,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:45,785 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:32:45,812 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:32:45,892 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=170.254
+2025-10-02 05:32:45,892 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:32:45,895 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:32:48,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:48,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:48,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:48,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:32:48,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:32:48,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:48,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:48,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:48,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:48,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:32:48,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:32:48,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:52,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:52,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:52,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:52,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:32:52,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:32:52,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:53,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:53,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:53,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:53,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:32:53,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:32:53,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:53,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:53,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:53,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:53,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:32:53,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:32:53,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:54,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:54,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:54,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:54,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:32:54,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:32:54,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:55,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:55,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:55,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:55,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:32:55,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:32:55,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:56,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:56,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:56,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:56,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 05:32:56,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 05:32:56,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:58,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:58,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:58,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:58,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:32:58,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:32:58,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:32:58,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:32:58,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:32:58,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:32:58,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:32:58,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:32:58,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:00,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:00,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:00,388 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:00,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:33:00,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:33:00,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:01,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:01,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:01,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:02,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 05:33:02,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 05:33:02,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:04,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:04,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:04,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:04,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:33:04,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:33:04,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:04,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:04,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:04,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:04,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:33:04,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:33:04,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:09,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:09,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:09,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:10,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:33:10,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:33:10,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:10,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:10,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:10,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:10,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:33:10,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:33:10,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:12,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:12,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:12,816 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:12,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:33:12,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:33:12,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:14,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:14,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:14,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:14,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:33:14,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:33:14,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:16,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:16,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:16,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:16,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:33:16,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:33:16,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:17,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:17,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:17,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:18,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:33:18,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:33:18,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:20,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:20,786 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:20,821 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:20,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:33:20,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:33:20,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:22,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:22,268 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:22,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:22,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:33:22,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:33:22,428 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:22,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:22,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:22,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:23,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:33:23,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:33:23,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:26,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:26,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:26,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:26,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:33:26,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:33:26,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:27,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:27,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:27,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:27,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:33:27,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:33:27,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:28,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:28,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:28,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:28,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:33:28,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:33:28,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:30,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:30,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:30,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:30,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:33:30,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:33:30,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:31,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:31,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:31,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:31,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:33:31,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:33:31,639 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:37,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:37,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:37,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:37,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:33:37,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:33:37,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:40,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:40,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:40,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:40,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:33:40,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:33:40,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:40,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:40,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:40,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:40,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:33:40,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:33:40,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:42,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:42,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:42,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:42,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:33:42,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:33:42,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:45,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:45,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:45,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:45,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:33:45,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:33:45,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:46,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:46,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:46,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:46,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:33:46,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:33:46,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:51,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:51,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:51,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:51,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:33:51,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:33:51,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:51,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:51,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:52,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:52,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:33:52,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:33:52,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:52,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:52,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:52,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:52,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:33:52,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:33:52,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:53,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:53,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:53,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:53,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:33:53,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:33:53,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:54,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:54,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:54,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:54,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:33:54,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:33:54,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:55,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:55,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:55,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:55,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:33:55,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:33:55,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:58,347 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:58,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:58,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:58,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:33:58,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:33:58,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:33:58,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:33:58,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:33:59,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:33:59,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:33:59,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:33:59,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:03,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:03,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:03,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:03,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:34:03,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:34:03,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:06,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:06,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:06,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:06,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:34:06,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:34:06,314 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:07,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:07,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:07,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:07,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:34:07,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:34:07,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:07,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:07,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:08,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:08,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:34:08,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:34:08,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:11,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:11,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:11,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:12,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:34:12,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:34:12,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:12,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:12,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:12,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:13,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:34:13,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:34:13,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:18,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:18,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:18,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:18,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:34:18,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:34:18,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:18,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:18,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:18,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:18,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:34:18,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:34:18,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:23,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:23,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:23,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:24,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:34:24,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:34:24,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:24,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:24,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:24,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:24,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:34:24,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:34:24,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:25,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:25,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:25,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:25,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:34:25,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:34:25,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:30,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:30,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:30,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:30,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:34:30,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:34:30,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:30,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:30,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:30,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:30,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:34:30,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:34:30,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:31,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:31,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:31,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:31,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:34:31,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:34:31,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:34,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:34,708 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:34,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:34,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:34:34,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:34:34,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:39,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:39,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:39,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:39,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:34:39,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:34:39,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:41,072 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:34:41,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:34:41,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:34:41,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s
+2025-10-02 05:34:41,355 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image)
+2025-10-02 05:34:41,355 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:34:45,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:45,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:46,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:46,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:34:46,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:34:46,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:47,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:47,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:47,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:47,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:34:47,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:34:47,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:47,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:47,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:47,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:47,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:34:47,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:34:47,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:51,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:51,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:51,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:51,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:34:51,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:34:51,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:52,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:52,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:52,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:52,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:34:52,277 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:34:52,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:52,929 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:52,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:52,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:53,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:34:53,095 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:34:53,095 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:53,863 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:34:53,890 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1073, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:34:53,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.936
+2025-10-02 05:34:53,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:34:53,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:34:56,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:56,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:56,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:56,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:34:56,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:34:56,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:34:57,672 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:34:57,700 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:34:57,780 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.775
+2025-10-02 05:34:57,780 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:34:57,780 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:34:58,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:34:58,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:34:58,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:34:59,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:34:59,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:34:59,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:01,520 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:35:01,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:35:01,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:35:01,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s
+2025-10-02 05:35:01,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image)
+2025-10-02 05:35:01,798 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:35:05,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:05,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:05,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:06,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:35:06,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:35:06,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:10,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:10,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:10,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:10,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:35:10,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:35:10,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:14,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:14,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:14,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:14,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:35:14,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:35:14,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:15,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:15,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:15,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:15,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:35:15,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:35:15,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:20,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:20,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:20,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:20,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:35:20,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:35:20,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:23,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:23,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:23,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:23,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:35:23,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:35:23,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:24,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:24,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:24,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:24,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:35:24,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:35:24,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:27,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:27,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:27,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:27,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:35:27,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:35:27,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:34,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:34,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:34,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:34,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:35:34,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:35:34,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:35,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:35,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:35,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:35,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:35:35,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:35:35,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:36,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:36,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:36,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:37,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:35:37,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:35:37,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:39,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:39,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:39,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:39,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:35:39,936 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:35:39,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:40,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:40,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:40,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:40,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s
+2025-10-02 05:35:40,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image)
+2025-10-02 05:35:40,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:44,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:44,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:44,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:44,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:35:44,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:35:44,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:44,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:44,833 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:44,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:44,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:35:44,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:35:44,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:47,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:47,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:47,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:47,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:35:47,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:35:47,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:49,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:49,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:49,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:49,976 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:35:49,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:35:49,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:51,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:51,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:51,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:51,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:35:51,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:35:51,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:54,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:54,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:54,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:54,626 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:35:54,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:35:54,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:35:57,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:35:57,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:35:57,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:35:57,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:35:57,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:35:57,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:02,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:02,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:02,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:02,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:36:02,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:36:02,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:07,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:07,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:07,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:07,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:36:07,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:36:07,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:09,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:09,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:09,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:10,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:36:10,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:36:10,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:15,098 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:15,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:15,224 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=189.418
+2025-10-02 05:36:15,224 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s
+2025-10-02 05:36:15,226 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s
+2025-10-02 05:36:17,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:17,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:17,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:17,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:36:17,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:36:17,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:17,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:17,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:17,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:18,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:36:18,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:36:18,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:21,440 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:21,469 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:21,559 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=168.666
+2025-10-02 05:36:21,559 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 05:36:21,560 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:36:23,442 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:23,474 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:23,560 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.543
+2025-10-02 05:36:23,560 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 05:36:23,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 05:36:24,749 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:24,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:24,869 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.451
+2025-10-02 05:36:24,870 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 05:36:24,870 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:36:29,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:29,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:29,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:30,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:36:30,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:36:30,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:30,294 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:30,337 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:30,424 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.203
+2025-10-02 05:36:30,424 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 05:36:30,425 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s
+2025-10-02 05:36:30,751 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:30,780 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 700, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:30,863 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.580
+2025-10-02 05:36:30,863 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s
+2025-10-02 05:36:30,865 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:36:30,996 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:31,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:31,107 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=103.775
+2025-10-02 05:36:31,107 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 05:36:31,107 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:36:31,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:31,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:31,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:31,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:36:31,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:36:31,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:31,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:31,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:31,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:32,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:36:32,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:36:32,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:34,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:34,223 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:34,300 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=138.443
+2025-10-02 05:36:34,301 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:36:34,301 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:36:34,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:36:34,833 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 640, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:36:34,911 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.062
+2025-10-02 05:36:34,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:36:34,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:36:37,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:37,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:37,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:37,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:36:37,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:36:37,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:37,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:37,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:37,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:38,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:36:38,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:36:38,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:38,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:38,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:38,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:38,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:36:38,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:36:38,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:40,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:40,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:40,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:41,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:36:41,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:36:41,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:41,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:41,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:41,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:41,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 05:36:41,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 05:36:41,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:43,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:43,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:43,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:43,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:36:43,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:36:43,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:48,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:48,068 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:48,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:48,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:36:48,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:36:48,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:48,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:48,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:48,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:48,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:36:48,541 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:36:48,541 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:50,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:50,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:50,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:50,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:36:50,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:36:50,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:51,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:51,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:51,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:51,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:36:51,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:36:51,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:53,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:53,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:53,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:53,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:36:53,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:36:53,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:53,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:53,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:53,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:53,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:36:53,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:36:53,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:54,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:54,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:54,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:55,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:36:55,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:36:55,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:36:55,630 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:36:55,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:36:55,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:36:55,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 05:36:55,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image)
+2025-10-02 05:36:55,914 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:36:57,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:36:57,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:36:57,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:36:57,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:36:57,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:36:57,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:01,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:01,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:01,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:01,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:37:01,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:37:01,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:03,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:03,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:03,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:04,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:37:04,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:37:04,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:06,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:06,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:06,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:06,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:37:06,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:37:06,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:07,214 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:37:07,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:37:07,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:37:07,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s
+2025-10-02 05:37:07,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image)
+2025-10-02 05:37:07,509 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:37:08,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:08,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:08,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:08,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:37:08,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:37:08,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:10,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:10,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:10,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:10,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:37:10,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:37:10,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:11,075 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:37:11,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:37:11,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:37:11,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s
+2025-10-02 05:37:11,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image)
+2025-10-02 05:37:11,351 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:37:11,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:11,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:11,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:11,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:37:11,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:37:11,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:12,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:12,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:12,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:12,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:37:12,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:37:12,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:12,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:12,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:12,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:12,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:37:12,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:37:12,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:12,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:12,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:12,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:12,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s
+2025-10-02 05:37:12,940 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image)
+2025-10-02 05:37:12,940 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:13,320 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:13,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:13,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:13,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:37:13,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:37:13,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:15,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:15,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:15,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:15,445 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:37:15,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:37:15,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:17,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:17,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:17,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:17,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:37:17,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:37:17,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:18,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:18,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:18,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:18,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:37:18,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:37:18,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:19,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:19,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:19,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:19,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:37:19,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:37:19,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:19,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:19,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:19,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:19,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:37:19,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:37:19,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:19,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:19,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:19,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:19,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:37:19,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:37:19,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:20,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:20,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:20,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:20,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:37:20,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:37:20,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:21,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:21,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:21,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:21,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:37:21,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:37:21,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:23,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:23,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:23,339 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:23,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:37:23,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:37:23,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:25,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:25,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:25,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:25,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:37:25,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:37:25,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:26,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:26,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:26,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:26,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:37:26,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:37:26,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:28,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:28,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:28,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:28,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:37:28,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:37:28,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:29,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:29,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:29,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:29,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:37:29,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:37:29,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:29,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:29,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:29,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:30,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:37:30,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:37:30,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:30,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:30,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:31,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:31,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:37:31,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:37:31,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:31,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:31,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:31,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:31,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:37:31,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:37:31,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:32,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:32,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:32,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:32,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:37:32,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:37:32,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:32,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:32,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:32,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:32,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s
+2025-10-02 05:37:32,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image)
+2025-10-02 05:37:32,439 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:33,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:33,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:33,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:33,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:37:33,988 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:37:33,988 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:36,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:36,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:36,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:36,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:37:36,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:37:36,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:36,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:36,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:36,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:36,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s
+2025-10-02 05:37:36,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image)
+2025-10-02 05:37:36,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:38,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:38,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:38,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:38,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:37:38,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:37:38,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:40,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:40,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:40,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:41,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:37:41,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:37:41,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:41,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:41,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:41,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:41,359 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:37:41,359 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:37:41,359 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:45,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:45,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:45,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:45,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:37:45,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:37:45,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:45,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:45,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:45,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:45,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:37:45,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:37:45,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:46,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:46,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:46,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:46,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:37:46,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:37:46,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:48,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:48,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:48,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:48,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:37:48,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:37:48,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:49,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:49,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:49,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:49,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:37:49,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:37:49,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:49,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:49,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:50,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:50,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:37:50,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:37:50,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:50,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:50,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:50,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:50,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:37:50,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:37:50,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:54,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:54,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:54,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:54,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:37:54,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:37:54,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:54,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:54,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:55,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:55,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:37:55,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:37:55,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:55,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:55,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:55,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:55,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:37:55,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:37:55,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:57,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:57,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:57,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:57,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:37:57,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:37:57,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:37:58,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:37:58,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:37:58,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:37:58,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:37:58,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:37:58,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:00,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:00,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:00,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:00,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:38:00,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:38:00,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:00,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:00,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:00,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:00,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:38:00,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:38:00,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:01,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:01,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:01,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:01,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:38:01,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:38:01,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:03,144 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:38:03,176 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:38:03,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.710
+2025-10-02 05:38:03,268 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s
+2025-10-02 05:38:03,268 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s
+2025-10-02 05:38:05,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:05,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:05,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:05,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:38:05,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:38:05,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:05,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:38:05,969 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:38:06,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.021
+2025-10-02 05:38:06,050 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:38:06,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:38:06,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:06,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:06,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:06,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:38:06,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:38:06,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:06,943 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:38:06,965 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:38:07,048 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.442
+2025-10-02 05:38:07,049 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s
+2025-10-02 05:38:07,050 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:38:07,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:07,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:07,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:07,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:38:07,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:38:07,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:08,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:08,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:08,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:08,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:38:08,320 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:38:08,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:10,132 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:38:10,154 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:38:10,246 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.408
+2025-10-02 05:38:10,246 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s
+2025-10-02 05:38:10,247 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s
+2025-10-02 05:38:11,535 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:38:11,564 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:38:11,641 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.079
+2025-10-02 05:38:11,641 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:38:11,641 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:38:11,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:11,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:12,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:12,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:38:12,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:38:12,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:13,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:13,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:13,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:13,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:38:13,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:38:13,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:14,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:14,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:14,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:14,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:38:14,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:38:14,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:14,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:14,991 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:15,031 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:15,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:38:15,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:38:15,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:16,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:16,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:16,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:16,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:38:16,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:38:16,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:17,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:17,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:17,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:18,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:38:18,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:38:18,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:18,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:18,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:18,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:18,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:38:18,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:38:18,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:19,477 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:38:19,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:38:19,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:38:19,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s
+2025-10-02 05:38:19,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.156s/image)
+2025-10-02 05:38:19,791 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:38:23,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:23,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:23,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:23,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:38:23,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:38:23,524 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:24,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:24,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:24,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:24,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:38:24,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:38:24,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:25,098 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:25,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:25,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:25,265 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:38:25,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:38:25,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:25,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:25,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:25,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:25,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:38:25,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:38:25,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:30,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:30,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:30,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:30,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:38:30,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:38:30,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:30,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:30,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:30,974 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:31,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s
+2025-10-02 05:38:31,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image)
+2025-10-02 05:38:31,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:32,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:32,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:32,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:32,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:38:32,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:38:32,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:33,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:33,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:33,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:33,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:38:33,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:38:33,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:36,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:36,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:36,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:37,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:38:37,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:38:37,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:37,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:37,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:37,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:37,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:38:37,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:38:37,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:39,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:39,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:39,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:39,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:38:39,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:38:39,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:39,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:39,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:39,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:39,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:38:39,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:38:39,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:40,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:40,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:40,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:40,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:38:40,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:38:40,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:42,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:42,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:42,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:42,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:38:42,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:38:42,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:42,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:42,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:42,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:42,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:38:42,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:38:42,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:43,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:43,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:43,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:44,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:38:44,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:38:44,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:46,163 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:46,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:46,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:46,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s
+2025-10-02 05:38:46,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image)
+2025-10-02 05:38:46,367 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:47,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:47,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:47,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:47,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:38:47,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:38:47,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:48,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:48,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:48,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:48,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:38:48,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:38:48,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:51,629 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:38:51,665 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:38:51,770 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=30.901
+2025-10-02 05:38:51,770 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.103s
+2025-10-02 05:38:51,772 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s
+2025-10-02 05:38:53,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:53,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:53,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:53,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s
+2025-10-02 05:38:53,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image)
+2025-10-02 05:38:53,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:53,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:53,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:53,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:53,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:38:53,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:38:53,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:54,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:54,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:54,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:54,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:38:54,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:38:54,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:56,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:56,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:56,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:57,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:38:57,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:38:57,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:38:57,522 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:38:57,554 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:38:57,653 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.881
+2025-10-02 05:38:57,653 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s
+2025-10-02 05:38:57,655 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s
+2025-10-02 05:38:58,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:38:58,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:38:58,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:38:58,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:38:58,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:38:58,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:00,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:00,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:00,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:00,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:39:00,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:39:00,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:01,767 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:39:01,805 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:39:01,907 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=8.062
+2025-10-02 05:39:01,907 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s
+2025-10-02 05:39:01,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s
+2025-10-02 05:39:03,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:03,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:03,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:03,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:39:03,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:39:03,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:06,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:06,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:06,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:06,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:39:06,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:39:06,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:07,342 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:39:07,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:39:07,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:39:07,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s
+2025-10-02 05:39:07,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image)
+2025-10-02 05:39:07,661 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:39:13,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:13,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:13,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:13,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:39:13,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:39:13,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:13,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:13,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:14,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:14,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:39:14,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:39:14,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:15,301 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:15,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:15,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:15,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:39:15,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:39:15,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:17,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:17,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:17,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:17,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:39:17,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:39:17,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:18,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:18,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:18,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:18,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:39:18,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:39:18,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:19,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:19,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:19,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:19,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:39:19,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:39:19,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:22,705 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:39:22,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:39:22,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:39:22,980 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s
+2025-10-02 05:39:22,980 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image)
+2025-10-02 05:39:22,980 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:39:24,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:24,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:24,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:24,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:39:24,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:39:24,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:25,863 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:39:25,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:39:25,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:39:26,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s
+2025-10-02 05:39:26,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image)
+2025-10-02 05:39:26,162 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:39:26,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:26,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:26,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:26,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:39:26,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:39:26,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:26,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:26,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:26,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:26,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 05:39:26,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 05:39:26,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:28,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:28,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:28,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:28,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:39:28,610 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:39:28,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:31,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:31,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:31,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:31,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:39:31,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:39:31,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:32,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:32,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:32,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:32,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:39:32,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:39:32,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:32,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:32,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:32,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:33,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:39:33,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:39:33,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:34,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:34,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:34,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:34,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:39:34,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:39:34,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:34,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:34,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:34,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:35,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:39:35,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:39:35,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:36,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:36,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:36,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:37,049 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:39:37,049 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:39:37,049 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:38,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:38,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:38,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:38,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:39:38,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:39:38,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:42,069 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:39:42,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:39:42,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:39:42,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s
+2025-10-02 05:39:42,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image)
+2025-10-02 05:39:42,394 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:39:42,874 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:39:42,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:39:42,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:39:43,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s
+2025-10-02 05:39:43,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image)
+2025-10-02 05:39:43,142 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:39:45,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:45,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:45,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:46,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:39:46,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:39:46,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:46,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:46,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:46,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:46,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:39:46,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:39:46,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:47,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:47,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:47,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:47,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:39:47,209 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:39:47,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:50,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:50,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:50,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:50,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:39:50,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:39:50,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:51,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:51,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:51,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:51,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:39:51,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:39:51,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:52,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:52,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:52,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:52,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:39:52,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:39:52,388 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:53,240 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:39:53,284 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:39:53,374 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.257
+2025-10-02 05:39:53,374 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s
+2025-10-02 05:39:53,374 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:39:54,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:54,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:54,125 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:54,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:39:54,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:39:54,268 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:55,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:55,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:55,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:55,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:39:55,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:39:55,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:56,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:39:56,080 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:39:56,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.124
+2025-10-02 05:39:56,152 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 05:39:56,152 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 05:39:56,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:56,282 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:56,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:56,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:39:56,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:39:56,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:56,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:56,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:56,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:56,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:39:56,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:39:56,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:58,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:58,466 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:58,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:58,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:39:58,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:39:58,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:39:58,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:39:58,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:39:58,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:39:59,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:39:59,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:39:59,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:00,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:00,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:00,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:00,217 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:40:00,217 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:40:00,217 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:01,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:01,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:01,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:01,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:40:01,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:40:01,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:04,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:04,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:04,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:04,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:40:04,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:40:04,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:05,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:05,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:05,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:05,159 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:40:05,159 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:40:05,159 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:05,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:05,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:05,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:05,734 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:40:05,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:40:05,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:07,953 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:40:07,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:40:08,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:40:08,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s
+2025-10-02 05:40:08,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image)
+2025-10-02 05:40:08,246 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:40:09,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:09,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:09,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:09,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:40:09,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:40:09,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:13,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:13,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:13,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:13,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:40:13,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:40:13,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:18,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:18,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:18,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:18,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:40:18,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:40:18,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:19,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:19,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:19,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:19,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:40:19,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:40:19,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:20,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:20,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:20,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:20,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:40:20,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:40:20,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:22,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:22,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:22,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:22,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:40:22,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:40:22,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:27,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:27,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:27,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:27,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:40:27,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:40:27,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:28,295 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:40:28,316 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:40:28,396 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.769
+2025-10-02 05:40:28,397 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:40:28,397 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:40:29,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:29,206 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:29,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:29,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:40:29,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:40:29,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:31,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:31,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:31,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:31,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:40:31,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:40:31,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:33,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:33,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:33,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:33,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:40:33,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:40:33,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:34,546 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:40:34,575 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:40:34,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.209
+2025-10-02 05:40:34,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s
+2025-10-02 05:40:34,670 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s
+2025-10-02 05:40:35,655 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:35,655 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:35,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:35,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:40:35,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:40:35,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:37,868 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:40:37,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:40:37,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:40:38,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s
+2025-10-02 05:40:38,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image)
+2025-10-02 05:40:38,173 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:40:38,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:38,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:38,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:38,686 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 05:40:38,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 05:40:38,687 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:39,204 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:40:39,226 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:40:39,308 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.652
+2025-10-02 05:40:39,309 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:40:39,309 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:40:39,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:39,633 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:39,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:39,788 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:40:39,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:40:39,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:43,878 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:40:43,893 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:40:43,966 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=41.775
+2025-10-02 05:40:43,967 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:40:43,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:40:43,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:43,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:44,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:44,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:40:44,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:40:44,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:45,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:45,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:45,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:45,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:40:45,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:40:45,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:46,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:46,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:46,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:46,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 05:40:46,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 05:40:46,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:48,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:48,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:48,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:48,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:40:48,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:40:48,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:48,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:48,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:49,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:49,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:40:49,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:40:49,154 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:51,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:51,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:51,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:51,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:40:51,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:40:51,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:51,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:51,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:51,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:51,799 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:40:51,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:40:51,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:53,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:53,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:53,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:53,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:40:53,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:40:53,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:57,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:57,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:57,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:57,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:40:57,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:40:57,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:40:58,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:40:58,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:40:58,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:40:58,291 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:40:58,291 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:40:58,292 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:00,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:00,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:00,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:00,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:41:00,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:41:00,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:02,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:41:02,133 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:41:02,213 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=141.338
+2025-10-02 05:41:02,213 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:41:02,213 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:41:02,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:02,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:02,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:02,781 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:41:02,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:41:02,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:07,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:07,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:07,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:07,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:41:07,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:41:07,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:08,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:08,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:08,416 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:08,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:41:08,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:41:08,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:08,590 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:41:08,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:41:08,686 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.298
+2025-10-02 05:41:08,686 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:41:08,686 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:41:10,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:10,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:10,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:10,737 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:41:10,738 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:41:10,738 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:15,885 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:41:15,914 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:41:15,995 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.238
+2025-10-02 05:41:15,995 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:41:15,996 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:41:16,824 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:41:16,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:41:16,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:41:17,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 05:41:17,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image)
+2025-10-02 05:41:17,109 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:41:20,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:20,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:20,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:20,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.206s
+2025-10-02 05:41:20,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.206s (avg: 0.206s/image)
+2025-10-02 05:41:20,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:21,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:21,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:21,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:21,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:41:21,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:41:21,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:22,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:22,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:22,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:22,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:41:22,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:41:22,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:26,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:26,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:26,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:26,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:41:26,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:41:26,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:26,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:26,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:26,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:27,020 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:41:27,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:41:27,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:28,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:28,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:28,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:28,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:41:28,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:41:28,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:32,172 - main - INFO - 🚀 인페인팅 서버 시작 중...
+2025-10-02 05:41:32,172 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료
+2025-10-02 05:41:32,172 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중...
+2025-10-02 05:41:32,172 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료
+2025-10-02 05:41:32,172 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지)
+2025-10-02 05:41:32,172 - app.core.session_pool - INFO - Initializing dynamic session pools...
+2025-10-02 05:41:32,172 - app.core.session_pool - INFO - Pre-loading 2 sessions for simple_lama
+2025-10-02 05:41:32,173 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨
+2025-10-02 05:41:32,173 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama...
+2025-10-02 05:41:33,776 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama...
+2025-10-02 05:41:33,777 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:41:34,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:41:34,779 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:41:34,780 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:41:35,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:41:35,560 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:41:35,560 - app.core.session_pool - INFO - Successfully created session simple_lama_0
+2025-10-02 05:41:35,560 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (23.0%)
+2025-10-02 05:41:35,561 - app.core.session_pool - INFO - Successfully created session simple_lama_1
+2025-10-02 05:41:35,561 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (23.0%)
+2025-10-02 05:41:35,561 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan
+2025-10-02 05:41:35,561 - app.core.session_pool - INFO - Creating new session migan_0 for migan...
+2025-10-02 05:41:35,602 - app.models.migan - INFO - Loading MIGAN ONNX model...
+2025-10-02 05:41:35,602 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도...
+2025-10-02 05:41:35,602 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:41:35,870 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:41:35,870 - app.models.migan - INFO - MIGAN ONNX model loaded successfully
+2025-10-02 05:41:35,871 - app.core.session_pool - INFO - Successfully created session migan_0
+2025-10-02 05:41:35,871 - app.core.session_pool - INFO - ➕ Session Created (migan). Status -> simple_lama: 2, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (23.4%)
+2025-10-02 05:41:35,871 - app.core.session_pool - INFO - Pre-loading 1 sessions for rembg
+2025-10-02 05:41:35,872 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg...
+2025-10-02 05:41:35,873 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료
+2025-10-02 05:41:35,874 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx
+2025-10-02 05:41:36,291 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output
+2025-10-02 05:41:36,291 - app.core.session_pool - INFO - Successfully created session rembg_0
+2025-10-02 05:41:36,292 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 2, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (24.6%)
+2025-10-02 05:41:36,292 - app.core.session_pool - INFO - Session pools initialized successfully
+2025-10-02 05:41:36,292 - main - INFO - ✅ 세션 풀 초기화 완료
+2025-10-02 05:41:36,292 - app.core.worker_manager - INFO - Starting worker manager...
+2025-10-02 05:41:36,293 - app.core.worker_manager - INFO - Worker manager started with 6 workers
+2025-10-02 05:41:36,293 - main - INFO - ✅ 워커 매니저 시작 완료
+2025-10-02 05:41:36,293 - app.core.batch_manager - INFO - Starting BatchManager...
+2025-10-02 05:41:36,293 - app.core.batch_manager - INFO - BatchManager started successfully.
+2025-10-02 05:41:36,293 - main - INFO - ✅ 배치 관리자 시작 완료
+2025-10-02 05:41:36,294 - main - INFO - 🎉 인페인팅 서버 시작 완료!
+2025-10-02 05:41:36,294 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다.
+2025-10-02 05:41:36,295 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s
+2025-10-02 05:41:36,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:36,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:36,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:37,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.294s
+2025-10-02 05:41:37,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.294s (avg: 1.294s/image)
+2025-10-02 05:41:37,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:38,222 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:41:38,247 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:41:44,427 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.226
+2025-10-02 05:41:44,427 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 6.179s
+2025-10-02 05:41:44,427 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 6.181s
+2025-10-02 05:41:44,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:41:44,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:41:44,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:41:51,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 6.802s
+2025-10-02 05:41:51,265 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 6.802s (avg: 6.802s/image)
+2025-10-02 05:41:51,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:41:51,743 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:41:51,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:41:51,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:41:52,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s
+2025-10-02 05:41:52,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image)
+2025-10-02 05:41:52,046 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:41:52,378 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:41:52,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:41:52,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:41:58,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 6.516s
+2025-10-02 05:41:58,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 6.516s (avg: 3.258s/image)
+2025-10-02 05:41:58,896 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:41:59,816 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:41:59,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:41:59,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.509
+2025-10-02 05:41:59,939 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s
+2025-10-02 05:41:59,939 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 05:42:00,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:00,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:00,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:00,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s
+2025-10-02 05:42:00,225 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image)
+2025-10-02 05:42:00,225 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:00,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:00,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:00,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:00,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:42:00,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:42:00,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:01,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:01,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:01,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:01,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:42:01,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:42:01,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:03,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:03,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:03,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:03,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 05:42:03,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 05:42:03,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:04,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:04,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:04,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:04,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:42:04,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:42:04,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:04,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:04,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:04,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:05,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:42:05,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:42:05,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:08,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:08,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:08,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:08,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:42:08,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:42:08,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:08,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:08,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:08,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:08,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:42:08,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:42:08,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:10,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:10,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:10,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:10,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:42:10,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:42:10,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:19,857 - main - INFO - 🚀 인페인팅 서버 시작 중...
+2025-10-02 05:42:19,857 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료
+2025-10-02 05:42:19,857 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중...
+2025-10-02 05:42:19,857 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료
+2025-10-02 05:42:19,857 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지)
+2025-10-02 05:42:19,857 - app.core.session_pool - INFO - Initializing dynamic session pools...
+2025-10-02 05:42:19,857 - app.core.session_pool - INFO - Pre-loading 2 sessions for simple_lama
+2025-10-02 05:42:19,857 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨
+2025-10-02 05:42:19,858 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama...
+2025-10-02 05:42:21,404 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama...
+2025-10-02 05:42:21,404 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:42:22,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:42:22,363 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:42:22,363 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:42:23,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:42:23,087 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:42:23,087 - app.core.session_pool - INFO - Successfully created session simple_lama_0
+2025-10-02 05:42:23,087 - 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 05:42:23,088 - app.core.session_pool - INFO - Successfully created session simple_lama_1
+2025-10-02 05:42:23,088 - 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 05:42:23,088 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan
+2025-10-02 05:42:23,088 - app.core.session_pool - INFO - Creating new session migan_0 for migan...
+2025-10-02 05:42:23,109 - app.models.migan - INFO - Loading MIGAN ONNX model...
+2025-10-02 05:42:23,109 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도...
+2025-10-02 05:42:23,109 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:42:23,373 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:42:23,373 - app.models.migan - INFO - MIGAN ONNX model loaded successfully
+2025-10-02 05:42:23,374 - app.core.session_pool - INFO - Successfully created session migan_0
+2025-10-02 05:42:23,374 - 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 05:42:23,374 - app.core.session_pool - INFO - Pre-loading 1 sessions for rembg
+2025-10-02 05:42:23,374 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg...
+2025-10-02 05:42:23,375 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료
+2025-10-02 05:42:23,375 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx
+2025-10-02 05:42:23,792 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output
+2025-10-02 05:42:23,793 - app.core.session_pool - INFO - Successfully created session rembg_0
+2025-10-02 05:42:23,794 - 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 05:42:23,794 - app.core.session_pool - INFO - Session pools initialized successfully
+2025-10-02 05:42:23,794 - main - INFO - ✅ 세션 풀 초기화 완료
+2025-10-02 05:42:23,794 - app.core.worker_manager - INFO - Starting worker manager...
+2025-10-02 05:42:23,795 - app.core.worker_manager - INFO - Worker manager started with 6 workers
+2025-10-02 05:42:23,795 - main - INFO - ✅ 워커 매니저 시작 완료
+2025-10-02 05:42:23,795 - app.core.batch_manager - INFO - Starting BatchManager...
+2025-10-02 05:42:23,795 - app.core.batch_manager - INFO - BatchManager started successfully.
+2025-10-02 05:42:23,795 - main - INFO - ✅ 배치 관리자 시작 완료
+2025-10-02 05:42:23,795 - main - INFO - 🎉 인페인팅 서버 시작 완료!
+2025-10-02 05:42:23,796 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다.
+2025-10-02 05:42:23,796 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s
+2025-10-02 05:42:24,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:24,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:25,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:26,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.371s
+2025-10-02 05:42:26,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.371s (avg: 1.371s/image)
+2025-10-02 05:42:26,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:27,023 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs.
+2025-10-02 05:42:27,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB
+2025-10-02 05:42:27,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행
+2025-10-02 05:42:33,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 6.962s
+2025-10-02 05:42:33,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 6.962s (avg: 2.321s/image)
+2025-10-02 05:42:33,987 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs.
+2025-10-02 05:42:34,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:34,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:34,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:34,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:42:34,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:42:34,323 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:34,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:34,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:34,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:34,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 05:42:34,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 05:42:34,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:36,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:36,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:36,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:37,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:42:37,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:42:37,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:38,946 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:42:38,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:42:39,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:42:45,427 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 6.480s
+2025-10-02 05:42:45,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 6.480s (avg: 3.240s/image)
+2025-10-02 05:42:45,428 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:42:45,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:45,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:45,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:46,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:42:46,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:42:46,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:49,532 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:49,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:49,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:49,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.199s
+2025-10-02 05:42:49,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.199s (avg: 0.199s/image)
+2025-10-02 05:42:49,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:50,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:50,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:50,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:50,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:42:50,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:42:50,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:50,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:50,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:50,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:50,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:42:50,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:42:50,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:52,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:52,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:52,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:52,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:42:52,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:42:52,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:54,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:54,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:54,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:54,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:42:54,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:42:54,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:55,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:55,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:55,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:55,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:42:55,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:42:55,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:57,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:57,051 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:57,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:57,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:42:57,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:42:57,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:58,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:58,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:58,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:58,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s
+2025-10-02 05:42:58,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image)
+2025-10-02 05:42:58,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:42:58,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:42:58,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:42:59,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:42:59,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:42:59,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:42:59,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:02,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:02,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:02,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:02,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:43:02,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:43:02,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:03,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:03,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:03,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:03,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:43:03,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:43:03,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:04,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:04,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:04,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:04,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:43:04,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:43:04,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:05,600 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:43:05,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:43:05,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:43:13,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 7.897s
+2025-10-02 05:43:13,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 7.897s (avg: 3.949s/image)
+2025-10-02 05:43:13,499 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:43:13,975 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:13,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:14,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:14,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s
+2025-10-02 05:43:14,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image)
+2025-10-02 05:43:14,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:14,257 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:43:14,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:43:14,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:43:14,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s
+2025-10-02 05:43:14,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image)
+2025-10-02 05:43:14,520 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:43:17,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:17,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:17,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:17,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:43:17,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:43:17,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:18,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:18,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:18,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:18,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:43:18,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:43:18,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:22,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:22,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:22,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:22,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:43:22,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:43:22,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:24,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:24,129 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:24,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:24,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:43:24,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:43:24,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:24,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:24,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:24,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:24,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s
+2025-10-02 05:43:24,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image)
+2025-10-02 05:43:24,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:25,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:25,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:25,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:26,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s
+2025-10-02 05:43:26,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image)
+2025-10-02 05:43:26,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:27,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:27,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:27,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:27,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:43:27,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:43:27,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:27,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:27,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:27,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:27,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:43:27,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:43:27,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:29,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:29,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:29,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:29,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:43:29,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:43:29,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:31,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:31,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:31,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:31,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:43:31,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:43:31,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:31,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:31,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:31,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:31,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:43:31,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:43:31,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:32,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:32,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:32,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:32,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s
+2025-10-02 05:43:32,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image)
+2025-10-02 05:43:32,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:36,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:36,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:36,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:36,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:43:36,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:43:36,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:37,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:37,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:37,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:37,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:43:37,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:43:37,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:37,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:37,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:37,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:37,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:43:37,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:43:37,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:42,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:42,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:42,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:42,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:43:42,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:43:42,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:43,401 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:43:43,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:43:43,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:43:43,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.330s
+2025-10-02 05:43:43,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.330s (avg: 0.165s/image)
+2025-10-02 05:43:43,732 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:43:45,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:45,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:45,601 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:45,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:43:45,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:43:45,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:46,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:46,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:46,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:46,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:43:46,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:43:46,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:49,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:49,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:49,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:49,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:43:49,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:43:49,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:50,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:50,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:50,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:50,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:43:50,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:43:50,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:51,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:51,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:51,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:51,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:43:51,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:43:51,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:52,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:52,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:52,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:52,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:43:52,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:43:52,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:55,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:55,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:55,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:55,494 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:43:55,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:43:55,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:56,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:56,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:56,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:56,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:43:56,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:43:56,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:58,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:58,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:43:58,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:43:58,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:43:58,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:43:58,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:43:59,979 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:43:59,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:00,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:00,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:44:00,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:44:00,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:00,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:00,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:00,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:00,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:44:00,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:44:00,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:03,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:03,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:03,320 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:03,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:44:03,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:44:03,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:03,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:03,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:03,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:03,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s
+2025-10-02 05:44:03,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image)
+2025-10-02 05:44:03,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:04,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:04,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:04,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:04,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:44:04,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:44:04,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:08,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:08,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:08,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:08,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.185s
+2025-10-02 05:44:08,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.185s (avg: 0.185s/image)
+2025-10-02 05:44:08,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:11,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:11,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:11,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:11,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:44:11,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:44:11,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:13,380 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:13,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:13,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:13,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:44:13,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:44:13,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:14,956 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:44:14,983 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:44:22,986 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.664
+2025-10-02 05:44:22,987 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 8.002s
+2025-10-02 05:44:22,988 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 8.004s
+2025-10-02 05:44:23,371 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:44:23,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:44:23,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:44:23,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s
+2025-10-02 05:44:23,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image)
+2025-10-02 05:44:23,695 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:44:26,352 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:44:26,375 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:44:26,461 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=54.567
+2025-10-02 05:44:26,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s
+2025-10-02 05:44:26,462 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s
+2025-10-02 05:44:30,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:30,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:30,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:30,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:44:30,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:44:30,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:30,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:44:30,638 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:44:30,737 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.718
+2025-10-02 05:44:30,737 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s
+2025-10-02 05:44:30,738 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s
+2025-10-02 05:44:34,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:34,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:34,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:34,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:44:34,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:44:34,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:42,071 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:42,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:42,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:42,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:44:42,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:44:42,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:47,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:47,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:47,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:47,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 05:44:47,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 05:44:47,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:50,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:50,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:50,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:51,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:44:51,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:44:51,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:44:53,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:44:53,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:44:53,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:44:53,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:44:53,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:44:53,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:04,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:04,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:04,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:05,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:45:05,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:45:05,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:05,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:05,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:05,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:05,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:45:05,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:45:05,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:14,778 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:45:14,800 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:45:14,879 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.762
+2025-10-02 05:45:14,880 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:45:14,880 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:45:16,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:16,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:16,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:16,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:45:16,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:45:16,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:19,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:19,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:19,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:20,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:45:20,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:45:20,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:21,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:21,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:21,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:21,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:45:21,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:45:21,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:21,789 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:45:21,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:45:21,900 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.519
+2025-10-02 05:45:21,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s
+2025-10-02 05:45:21,901 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s
+2025-10-02 05:45:22,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:22,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:22,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:23,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:45:23,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:45:23,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:23,691 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:45:23,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:45:23,787 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.097
+2025-10-02 05:45:23,787 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 05:45:23,787 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:45:27,577 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:45:27,599 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:45:27,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.998
+2025-10-02 05:45:27,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 05:45:27,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:45:28,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:28,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:28,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:28,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:45:28,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:45:28,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:29,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:29,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:30,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:30,124 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:45:30,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:45:30,125 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:30,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:30,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:30,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:30,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:45:30,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:45:30,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:31,534 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:45:31,553 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:45:31,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.402
+2025-10-02 05:45:31,631 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:45:31,631 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:45:32,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:32,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:32,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:32,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:45:32,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:45:32,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:33,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:33,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:33,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:33,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:45:33,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:45:33,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:36,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:36,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:36,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:36,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:45:36,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:45:36,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:38,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:38,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:38,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:38,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:45:38,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:45:38,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:39,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:39,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:39,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:39,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:45:39,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:45:39,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:39,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:39,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:39,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:39,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:45:39,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:45:39,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:41,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:41,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:41,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:41,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:45:41,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:45:41,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:43,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:43,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:43,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:43,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s
+2025-10-02 05:45:43,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image)
+2025-10-02 05:45:43,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:44,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:44,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:44,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:44,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:45:44,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:45:44,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:46,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:46,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:46,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:46,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s
+2025-10-02 05:45:46,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image)
+2025-10-02 05:45:46,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:46,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:46,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:46,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:46,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:45:46,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:45:46,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:47,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:47,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:47,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:47,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:45:47,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:45:47,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:50,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:50,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:51,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:51,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:45:51,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:45:51,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:53,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:53,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:53,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:54,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:45:54,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:45:54,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:54,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:54,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:54,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:54,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:45:54,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:45:54,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:45:57,757 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:45:57,778 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:45:57,857 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.863
+2025-10-02 05:45:57,858 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:45:57,858 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:45:58,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:45:58,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:45:58,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:45:58,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:45:58,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:45:58,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:01,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:01,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:01,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:01,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:46:01,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:46:01,393 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:01,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:01,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:01,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:01,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:46:01,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:46:01,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:01,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:01,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:01,967 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:02,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:46:02,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:46:02,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:02,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:02,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:02,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:02,409 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:46:02,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:46:02,410 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:03,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:03,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:03,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:03,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:46:03,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:46:03,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:07,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:07,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:08,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:08,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:46:08,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:46:08,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:08,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:08,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:08,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:08,557 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:46:08,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:46:08,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:08,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:08,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:08,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:08,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:46:08,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:46:08,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:11,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:11,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:11,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:11,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:46:11,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:46:11,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:11,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:11,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:11,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:11,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:46:11,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:46:11,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:12,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:12,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:12,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:13,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:46:13,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:46:13,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:14,561 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:46:14,593 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:46:14,670 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.726
+2025-10-02 05:46:14,670 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:46:14,670 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:46:15,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:15,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:15,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:15,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:46:15,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:46:15,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:17,609 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:17,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:17,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:17,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:46:17,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:46:17,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:21,648 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:21,649 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:21,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:21,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:46:21,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:46:21,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:22,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:22,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:22,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:22,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:46:22,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:46:22,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:26,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:26,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:26,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:26,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:46:26,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:46:26,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:27,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:27,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:27,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:27,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:46:27,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:46:27,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:30,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:30,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:30,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:30,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:46:30,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:46:30,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:34,398 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:34,399 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:34,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:34,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:46:34,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:46:34,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:34,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:34,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:34,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:34,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:46:34,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:46:34,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:37,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:37,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:37,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:38,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:46:38,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:46:38,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:40,628 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:46:40,650 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:46:40,732 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.838
+2025-10-02 05:46:40,733 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:46:40,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:46:42,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:42,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:42,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:42,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:46:42,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:46:42,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:44,750 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:46:44,781 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:46:44,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=92.420
+2025-10-02 05:46:44,860 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:46:44,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:46:47,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:47,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:47,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:47,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:46:47,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:46:47,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:47,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:47,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:47,535 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:47,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 05:46:47,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 05:46:47,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:49,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:49,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:49,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:49,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:46:49,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:46:49,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:49,390 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:46:49,410 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:46:49,484 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=143.971
+2025-10-02 05:46:49,485 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:46:49,485 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:46:51,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:51,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:51,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:51,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:46:51,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:46:51,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:52,257 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:46:52,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:46:52,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:46:52,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s
+2025-10-02 05:46:52,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image)
+2025-10-02 05:46:52,526 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:46:53,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:53,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:53,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:54,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:46:54,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:46:54,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:54,211 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:54,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:54,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:54,379 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:46:54,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:46:54,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:54,544 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:46:54,568 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:46:54,638 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=122.537
+2025-10-02 05:46:54,639 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s
+2025-10-02 05:46:54,639 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s
+2025-10-02 05:46:56,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:46:56,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:46:56,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:46:56,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:46:56,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:46:56,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:46:59,573 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:46:59,618 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:46:59,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=137.864
+2025-10-02 05:46:59,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s
+2025-10-02 05:46:59,695 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s
+2025-10-02 05:47:00,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:00,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:00,066 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:00,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:47:00,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:47:00,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:02,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:02,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:02,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:02,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:47:02,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:47:02,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:02,504 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:47:02,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:47:02,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:47:02,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s
+2025-10-02 05:47:02,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image)
+2025-10-02 05:47:02,805 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:47:03,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:03,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:03,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:03,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:47:03,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:47:03,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:03,503 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:47:03,524 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:47:03,600 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.666
+2025-10-02 05:47:03,600 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 05:47:03,600 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:47:05,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:05,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:05,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:05,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:47:05,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:47:05,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:07,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:07,306 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:07,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:07,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:47:07,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:47:07,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:07,689 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:47:07,712 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:47:07,789 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.713
+2025-10-02 05:47:07,790 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:47:07,790 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:47:08,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:08,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:08,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:08,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:47:08,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:47:08,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:09,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:09,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:09,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:09,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:47:09,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:47:09,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:10,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:47:10,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:47:10,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:47:10,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s
+2025-10-02 05:47:10,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.153s/image)
+2025-10-02 05:47:10,898 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:47:11,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:11,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:12,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:12,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:47:12,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:47:12,139 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:14,172 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:47:14,209 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:47:14,289 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.390
+2025-10-02 05:47:14,289 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:47:14,289 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s
+2025-10-02 05:47:15,402 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:15,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:15,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:15,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:47:15,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:47:15,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:16,740 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:47:16,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:47:16,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:47:17,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s
+2025-10-02 05:47:17,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image)
+2025-10-02 05:47:17,016 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:47:17,518 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:47:17,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:47:17,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.376
+2025-10-02 05:47:17,620 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:47:17,620 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:47:18,867 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:47:18,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:47:18,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:47:19,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s
+2025-10-02 05:47:19,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image)
+2025-10-02 05:47:19,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:47:21,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:21,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:21,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:21,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s
+2025-10-02 05:47:21,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image)
+2025-10-02 05:47:21,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:23,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:23,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:23,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:23,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:47:23,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:47:23,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:24,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:24,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:24,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:24,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:47:24,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:47:24,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:26,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:26,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:26,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:26,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:47:26,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:47:26,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:27,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:27,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:27,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:27,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:47:27,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:47:27,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:28,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:28,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:28,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:28,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:47:28,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:47:28,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:31,880 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:31,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:31,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:32,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:47:32,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:47:32,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:33,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:33,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:33,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:33,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:47:33,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:47:33,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:34,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:34,903 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:34,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:35,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:47:35,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:47:35,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:39,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:39,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:39,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:40,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:47:40,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:47:40,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:40,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:40,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:40,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:40,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:47:40,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:47:40,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:40,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:40,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:40,788 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:40,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s
+2025-10-02 05:47:40,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image)
+2025-10-02 05:47:40,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:41,512 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:47:41,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:47:41,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:47:41,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s
+2025-10-02 05:47:41,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image)
+2025-10-02 05:47:41,801 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:47:44,442 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:47:44,477 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:47:44,574 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.885
+2025-10-02 05:47:44,574 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s
+2025-10-02 05:47:44,574 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s
+2025-10-02 05:47:49,279 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:47:49,311 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(700, 700, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:47:49,384 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=194.176
+2025-10-02 05:47:49,384 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 05:47:49,384 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s
+2025-10-02 05:47:50,764 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:47:50,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:47:50,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:47:51,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s
+2025-10-02 05:47:51,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image)
+2025-10-02 05:47:51,069 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:47:51,495 - main - INFO - 🚀 인페인팅 서버 시작 중...
+2025-10-02 05:47:51,495 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료
+2025-10-02 05:47:51,495 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중...
+2025-10-02 05:47:51,495 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료
+2025-10-02 05:47:51,495 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지)
+2025-10-02 05:47:51,496 - app.core.session_pool - INFO - Initializing dynamic session pools...
+2025-10-02 05:47:51,496 - app.core.session_pool - INFO - Pre-loading 4 sessions for simple_lama
+2025-10-02 05:47:51,496 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨
+2025-10-02 05:47:51,496 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama...
+2025-10-02 05:47:52,984 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama...
+2025-10-02 05:47:52,985 - app.core.session_pool - INFO - Creating new session simple_lama_2 for simple_lama...
+2025-10-02 05:47:52,985 - app.core.session_pool - INFO - Creating new session simple_lama_3 for simple_lama...
+2025-10-02 05:47:52,985 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:47:53,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:47:53,960 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:47:53,960 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:47:54,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:47:54,691 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:47:54,691 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:47:55,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:47:55,480 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:47:55,480 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:47:56,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:47:56,219 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:47:56,220 - app.core.session_pool - INFO - Successfully created session simple_lama_0
+2025-10-02 05:47:56,220 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (27.2%)
+2025-10-02 05:47:56,220 - app.core.session_pool - INFO - Successfully created session simple_lama_1
+2025-10-02 05:47:56,221 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (27.2%)
+2025-10-02 05:47:56,221 - app.core.session_pool - INFO - Successfully created session simple_lama_2
+2025-10-02 05:47:56,221 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (27.2%)
+2025-10-02 05:47:56,221 - app.core.session_pool - INFO - Successfully created session simple_lama_3
+2025-10-02 05:47:56,221 - app.core.session_pool - INFO - ➕ Session Created (simple_lama). Status -> simple_lama: 0, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (27.2%)
+2025-10-02 05:47:56,222 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan
+2025-10-02 05:47:56,222 - app.core.session_pool - INFO - Creating new session migan_0 for migan...
+2025-10-02 05:47:56,263 - app.models.migan - INFO - Loading MIGAN ONNX model...
+2025-10-02 05:47:56,263 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도...
+2025-10-02 05:47:56,263 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:47:56,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:47:56,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:47:56,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:47:56,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:47:56,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:47:56,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:47:56,562 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:47:56,563 - app.models.migan - INFO - MIGAN ONNX model loaded successfully
+2025-10-02 05:47:56,564 - app.core.session_pool - INFO - Successfully created session migan_0
+2025-10-02 05:47:56,564 - app.core.session_pool - INFO - ➕ Session Created (migan). Status -> simple_lama: 4, migan: 0, rembg: 0 | VRAM: 0.0/0.0 GB (23.4%)
+2025-10-02 05:47:56,566 - app.core.session_pool - INFO - Pre-loading 2 sessions for rembg
+2025-10-02 05:47:56,567 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg...
+2025-10-02 05:47:56,568 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료
+2025-10-02 05:47:56,568 - app.core.session_pool - INFO - Creating new session rembg_1 for rembg...
+2025-10-02 05:47:56,568 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료
+2025-10-02 05:47:56,569 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx
+2025-10-02 05:47:57,021 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:47:57,022 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:47:57,093 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output
+2025-10-02 05:47:57,093 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx
+2025-10-02 05:47:57,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:47:57,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.324s
+2025-10-02 05:47:57,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.324s (avg: 0.162s/image)
+2025-10-02 05:47:57,347 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:47:57,502 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output
+2025-10-02 05:47:57,503 - app.core.session_pool - INFO - Successfully created session rembg_0
+2025-10-02 05:47:57,503 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (30.0%)
+2025-10-02 05:47:57,504 - app.core.session_pool - INFO - Successfully created session rembg_1
+2025-10-02 05:47:57,504 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (30.0%)
+2025-10-02 05:47:57,504 - app.core.session_pool - INFO - Session pools initialized successfully
+2025-10-02 05:47:57,504 - main - INFO - ✅ 세션 풀 초기화 완료
+2025-10-02 05:47:57,504 - app.core.worker_manager - INFO - Starting worker manager...
+2025-10-02 05:47:57,505 - app.core.worker_manager - INFO - Worker manager started with 6 workers
+2025-10-02 05:47:57,505 - main - INFO - ✅ 워커 매니저 시작 완료
+2025-10-02 05:47:57,505 - app.core.batch_manager - INFO - Starting BatchManager...
+2025-10-02 05:47:57,505 - app.core.batch_manager - INFO - BatchManager started successfully.
+2025-10-02 05:47:57,505 - main - INFO - ✅ 배치 관리자 시작 완료
+2025-10-02 05:47:57,505 - main - INFO - 🎉 인페인팅 서버 시작 완료!
+2025-10-02 05:47:57,506 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다.
+2025-10-02 05:47:57,506 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s
+2025-10-02 05:47:57,508 - main - INFO - 🛑 인페인팅 서버 종료 중...
+2025-10-02 05:47:57,508 - app.core.worker_manager - INFO - Stopping worker manager...
+2025-10-02 05:47:57,508 - app.core.worker_manager - INFO - Worker manager stopped
+2025-10-02 05:47:57,508 - main - INFO - ✅ 워커 매니저 중지 완료
+2025-10-02 05:47:57,508 - app.core.batch_manager - INFO - Stopping BatchManager...
+2025-10-02 05:47:57,508 - app.core.batch_manager - INFO - BatchManager stopped.
+2025-10-02 05:47:57,509 - main - INFO - ✅ 배치 관리자 중지 완료
+2025-10-02 05:47:57,509 - main - INFO - 👋 인페인팅 서버 종료 완료
+2025-10-02 05:47:57,509 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다.
+2025-10-02 05:48:02,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:02,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:02,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:02,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:48:02,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:48:02,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:02,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:02,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:02,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:02,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:48:02,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:48:02,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:04,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:04,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:04,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:04,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s
+2025-10-02 05:48:04,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image)
+2025-10-02 05:48:04,277 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:04,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:04,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:04,494 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:04,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:48:04,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:48:04,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:07,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:07,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:07,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:07,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s
+2025-10-02 05:48:07,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image)
+2025-10-02 05:48:07,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:08,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:08,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:08,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:08,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:48:08,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:48:08,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:08,239 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:48:08,263 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:48:08,345 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.757
+2025-10-02 05:48:08,346 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:48:08,346 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:48:09,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:09,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:09,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:09,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:48:09,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:48:09,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:13,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:13,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:13,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:13,596 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:48:13,596 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:48:13,596 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:14,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:14,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:14,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:14,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:48:14,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:48:14,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:17,352 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:48:17,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:48:17,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:48:17,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s
+2025-10-02 05:48:17,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image)
+2025-10-02 05:48:17,668 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:48:19,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:19,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:19,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:19,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:48:19,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:48:19,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:22,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:22,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:22,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:22,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:48:22,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:48:22,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:22,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:22,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:22,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:22,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:48:22,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:48:22,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:24,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:48:24,738 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:48:24,820 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=37.895
+2025-10-02 05:48:24,820 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:48:24,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s
+2025-10-02 05:48:25,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:25,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:25,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:25,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:48:25,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:48:25,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:26,684 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:26,685 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:26,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:26,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:48:26,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:48:26,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:27,057 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:27,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:27,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:27,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:48:27,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:48:27,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:29,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:29,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:29,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:29,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:48:29,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:48:29,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:32,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:32,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:32,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:33,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:48:33,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:48:33,118 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:35,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:35,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:35,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:35,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:48:35,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:48:35,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:37,086 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:48:37,103 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:48:37,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.308
+2025-10-02 05:48:37,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.067s
+2025-10-02 05:48:37,171 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.068s
+2025-10-02 05:48:37,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:37,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:37,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:37,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:48:37,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:48:37,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:38,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:38,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:38,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:38,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:48:38,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:48:38,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:38,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:38,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:38,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:38,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:48:38,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:48:38,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:40,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:40,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:40,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:40,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:48:40,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:48:40,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:42,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:42,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:42,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:42,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s
+2025-10-02 05:48:42,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image)
+2025-10-02 05:48:42,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:42,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:42,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:42,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:42,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:48:42,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:48:42,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:43,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:43,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:43,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:44,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:48:44,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:48:44,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:45,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:45,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:45,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:45,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:48:45,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:48:45,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:47,907 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:47,908 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:47,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:48,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:48:48,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:48:48,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:50,683 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:48:50,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:48:50,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:48:51,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.335s
+2025-10-02 05:48:51,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.335s (avg: 0.167s/image)
+2025-10-02 05:48:51,020 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:48:52,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:52,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:52,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:53,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s
+2025-10-02 05:48:53,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image)
+2025-10-02 05:48:53,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:53,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:53,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:53,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:54,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s
+2025-10-02 05:48:54,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image)
+2025-10-02 05:48:54,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:54,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:54,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:54,665 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:54,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:48:54,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:48:54,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:55,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:55,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:55,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:56,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s
+2025-10-02 05:48:56,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image)
+2025-10-02 05:48:56,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:57,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:57,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:57,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:57,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:48:57,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:48:57,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:48:59,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:48:59,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:48:59,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:48:59,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:48:59,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:48:59,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:00,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:00,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:00,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:01,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:49:01,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:49:01,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:01,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:01,391 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:01,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:01,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:49:01,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:49:01,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:04,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:04,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:04,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:04,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:49:04,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:49:04,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:05,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:05,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:05,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:05,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:49:05,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:49:05,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:10,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:10,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:10,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:10,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s
+2025-10-02 05:49:10,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image)
+2025-10-02 05:49:10,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:10,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:10,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:10,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:10,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s
+2025-10-02 05:49:10,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image)
+2025-10-02 05:49:10,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:15,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:15,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:15,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:15,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s
+2025-10-02 05:49:15,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image)
+2025-10-02 05:49:15,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:15,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:15,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:15,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:15,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:49:15,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:49:15,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:16,734 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:49:16,760 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:49:16,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=152.319
+2025-10-02 05:49:16,850 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s
+2025-10-02 05:49:16,850 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s
+2025-10-02 05:49:19,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:49:19,223 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:49:19,304 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.299
+2025-10-02 05:49:19,305 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s
+2025-10-02 05:49:19,305 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:49:20,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:20,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:20,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:20,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:49:20,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:49:20,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:21,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:21,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:21,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:21,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:49:21,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:49:21,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:24,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:24,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:24,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:24,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:49:24,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:49:24,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:26,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:26,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:26,823 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:26,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:49:26,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:49:26,945 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:28,476 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:28,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:28,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:28,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:49:28,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:49:28,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:29,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:29,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:29,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:29,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:49:29,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:49:29,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:31,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:31,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:31,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:31,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:49:31,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:49:31,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:32,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:32,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:32,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:33,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:49:33,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:49:33,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:35,040 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:35,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:35,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:35,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:49:35,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:49:35,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:37,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:37,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:37,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:37,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:49:37,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:49:37,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:38,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:38,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:38,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:38,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:49:38,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:49:38,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:41,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:41,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:41,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:41,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:49:41,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:49:41,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:44,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:44,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:45,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:45,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:49:45,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:49:45,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:46,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:46,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:46,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:46,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:49:46,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:49:46,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:47,630 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:49:47,654 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:49:47,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.583
+2025-10-02 05:49:47,736 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s
+2025-10-02 05:49:47,736 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s
+2025-10-02 05:49:48,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:48,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:48,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:48,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:49:48,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:49:48,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:51,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:51,874 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:51,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:52,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:49:52,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:49:52,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:52,159 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:49:52,176 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:49:52,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.038
+2025-10-02 05:49:52,252 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s
+2025-10-02 05:49:52,252 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s
+2025-10-02 05:49:52,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:52,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:52,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:53,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:49:53,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:49:53,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:55,329 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:49:55,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:49:55,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:49:55,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s
+2025-10-02 05:49:55,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image)
+2025-10-02 05:49:55,613 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:49:55,887 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:49:55,909 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:49:55,983 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=162.966
+2025-10-02 05:49:55,983 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:49:55,984 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:49:56,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:56,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:56,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:56,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:49:56,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:49:56,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:49:57,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:49:57,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:49:57,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:49:57,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:49:57,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:49:57,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:00,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:00,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:00,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:01,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s
+2025-10-02 05:50:01,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image)
+2025-10-02 05:50:01,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:01,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:01,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:01,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:01,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:50:01,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:50:01,991 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:02,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:02,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:02,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:02,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:50:02,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:50:02,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:03,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:03,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:03,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:03,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s
+2025-10-02 05:50:03,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image)
+2025-10-02 05:50:03,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:04,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:04,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:04,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:04,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:50:04,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:50:04,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:06,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:06,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:06,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:06,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:50:06,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:50:06,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:07,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:07,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:07,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:07,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:50:07,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:50:07,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:08,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:08,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:08,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:08,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:50:08,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:50:08,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:09,987 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:09,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:10,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:10,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:50:10,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:50:10,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:13,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:13,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:13,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:13,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:50:13,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:50:13,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:17,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:17,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:17,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:17,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:50:17,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:50:17,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:27,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:27,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:27,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:27,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:50:27,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:50:27,311 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:27,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:50:27,718 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:50:27,796 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=38.576
+2025-10-02 05:50:27,796 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s
+2025-10-02 05:50:27,797 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s
+2025-10-02 05:50:27,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:27,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:27,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:27,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:50:27,959 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:50:27,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:28,753 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:50:28,784 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:50:28,858 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.533
+2025-10-02 05:50:28,858 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:50:28,858 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:50:32,559 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:50:32,581 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:50:32,654 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.365
+2025-10-02 05:50:32,654 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s
+2025-10-02 05:50:32,654 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:50:35,705 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:50:35,728 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:50:35,808 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.429
+2025-10-02 05:50:35,808 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s
+2025-10-02 05:50:35,808 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s
+2025-10-02 05:50:36,556 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:36,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:36,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:36,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:50:36,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:50:36,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:38,646 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:50:38,674 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:50:38,749 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.181
+2025-10-02 05:50:38,749 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s
+2025-10-02 05:50:38,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s
+2025-10-02 05:50:41,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:41,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:41,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:41,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s
+2025-10-02 05:50:41,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image)
+2025-10-02 05:50:41,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:44,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:44,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:44,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:44,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:50:44,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:50:44,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:45,018 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:50:45,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:50:45,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:50:45,314 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s
+2025-10-02 05:50:45,314 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image)
+2025-10-02 05:50:45,315 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:50:52,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:52,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:52,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:52,339 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:50:52,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:50:52,340 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:52,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:52,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:52,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:52,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:50:52,799 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:50:52,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:55,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:55,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:55,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:55,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:50:55,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:50:55,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:56,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:56,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:56,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:56,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s
+2025-10-02 05:50:56,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image)
+2025-10-02 05:50:56,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:59,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:59,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:59,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:50:59,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:50:59,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:50:59,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:50:59,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:50:59,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:50:59,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:00,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s
+2025-10-02 05:51:00,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image)
+2025-10-02 05:51:00,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:01,604 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:51:01,628 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:51:01,702 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.709
+2025-10-02 05:51:01,702 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:51:01,702 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:51:02,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:02,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:02,482 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:02,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:51:02,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:51:02,603 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:06,636 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:51:06,662 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:51:06,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=190.191
+2025-10-02 05:51:06,736 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:51:06,736 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:51:11,026 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:51:11,054 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:51:11,127 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=238.856
+2025-10-02 05:51:11,127 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s
+2025-10-02 05:51:11,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s
+2025-10-02 05:51:11,917 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:11,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:11,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:12,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:51:12,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:51:12,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:12,102 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:51:12,124 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:51:12,195 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.202
+2025-10-02 05:51:12,196 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s
+2025-10-02 05:51:12,196 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s
+2025-10-02 05:51:12,351 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:51:12,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:51:12,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:51:12,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s
+2025-10-02 05:51:12,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image)
+2025-10-02 05:51:12,664 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:51:13,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:13,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:13,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:13,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:51:13,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:51:13,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:19,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:19,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:19,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:19,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s
+2025-10-02 05:51:19,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image)
+2025-10-02 05:51:19,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:21,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:21,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:21,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:21,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:51:21,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:51:21,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:22,116 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:51:22,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:51:22,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:51:22,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s
+2025-10-02 05:51:22,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image)
+2025-10-02 05:51:22,394 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:51:25,671 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:25,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:25,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:25,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s
+2025-10-02 05:51:25,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image)
+2025-10-02 05:51:25,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:26,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:26,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:26,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:26,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:51:26,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:51:26,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:26,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:26,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:26,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:26,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s
+2025-10-02 05:51:26,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image)
+2025-10-02 05:51:26,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:26,833 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:26,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:26,866 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:26,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:51:26,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:51:26,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:29,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:29,356 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:29,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:29,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:51:29,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:51:29,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:30,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:30,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:30,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:30,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s
+2025-10-02 05:51:30,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image)
+2025-10-02 05:51:30,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:30,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:30,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:31,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:31,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:51:31,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:51:31,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:33,691 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:51:33,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:51:33,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:51:33,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s
+2025-10-02 05:51:33,991 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image)
+2025-10-02 05:51:33,991 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:51:34,342 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:51:34,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:51:34,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:51:34,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s
+2025-10-02 05:51:34,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image)
+2025-10-02 05:51:34,625 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:51:37,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:37,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:37,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:38,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:51:38,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:51:38,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:38,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:38,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:38,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:38,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:51:38,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:51:38,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:38,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:38,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:38,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:38,982 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s
+2025-10-02 05:51:38,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image)
+2025-10-02 05:51:38,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:39,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:39,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:39,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:40,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:51:40,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:51:40,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:41,281 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:41,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:41,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:41,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s
+2025-10-02 05:51:41,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image)
+2025-10-02 05:51:41,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:42,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:42,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:42,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:42,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:51:42,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:51:42,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:42,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:42,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:42,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:42,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:51:42,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:51:42,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:46,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:46,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:47,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:47,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s
+2025-10-02 05:51:47,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image)
+2025-10-02 05:51:47,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:47,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:47,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:47,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:47,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s
+2025-10-02 05:51:47,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image)
+2025-10-02 05:51:47,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:48,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:51:48,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:51:48,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:51:48,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s
+2025-10-02 05:51:48,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image)
+2025-10-02 05:51:48,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:51:55,951 - main - INFO - 🚀 인페인팅 서버 시작 중...
+2025-10-02 05:51:55,951 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료
+2025-10-02 05:51:55,951 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중...
+2025-10-02 05:51:55,952 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료
+2025-10-02 05:51:55,952 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지)
+2025-10-02 05:51:55,952 - app.core.session_pool - INFO - Initializing dynamic session pools...
+2025-10-02 05:51:55,952 - app.core.session_pool - INFO - Pre-loading 4 sessions for simple_lama
+2025-10-02 05:51:55,952 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨
+2025-10-02 05:51:55,953 - app.core.session_pool - INFO - Creating new session simple_lama_0 for simple_lama...
+2025-10-02 05:51:57,610 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama...
+2025-10-02 05:51:57,611 - app.core.session_pool - INFO - Creating new session simple_lama_2 for simple_lama...
+2025-10-02 05:51:57,611 - app.core.session_pool - INFO - Creating new session simple_lama_3 for simple_lama...
+2025-10-02 05:51:57,611 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:51:58,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:51:58,614 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:51:58,614 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:51:59,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:51:59,350 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:51:59,350 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:52:00,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:52:00,156 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:52:00,156 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:52:00,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:52:00,896 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:52:00,897 - app.core.session_pool - INFO - Successfully created session simple_lama_0
+2025-10-02 05:52:00,897 - 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 05:52:00,897 - app.core.session_pool - INFO - Successfully created session simple_lama_1
+2025-10-02 05:52:00,897 - 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 05:52:00,898 - app.core.session_pool - INFO - Successfully created session simple_lama_2
+2025-10-02 05:52:00,898 - 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 05:52:00,898 - app.core.session_pool - INFO - Successfully created session simple_lama_3
+2025-10-02 05:52:00,898 - 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 05:52:00,898 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan
+2025-10-02 05:52:00,899 - app.core.session_pool - INFO - Creating new session migan_0 for migan...
+2025-10-02 05:52:00,920 - app.models.migan - INFO - Loading MIGAN ONNX model...
+2025-10-02 05:52:00,920 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도...
+2025-10-02 05:52:00,920 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:52:01,190 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:52:01,191 - app.models.migan - INFO - MIGAN ONNX model loaded successfully
+2025-10-02 05:52:01,191 - app.core.session_pool - INFO - Successfully created session migan_0
+2025-10-02 05:52:01,191 - 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 05:52:01,192 - app.core.session_pool - INFO - Pre-loading 2 sessions for rembg
+2025-10-02 05:52:01,192 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg...
+2025-10-02 05:52:01,193 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료
+2025-10-02 05:52:01,193 - app.core.session_pool - INFO - Creating new session rembg_1 for rembg...
+2025-10-02 05:52:01,193 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료
+2025-10-02 05:52:01,193 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx
+2025-10-02 05:52:01,599 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output
+2025-10-02 05:52:01,600 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx
+2025-10-02 05:52:01,979 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output
+2025-10-02 05:52:01,980 - app.core.session_pool - INFO - Successfully created session rembg_0
+2025-10-02 05:52:01,980 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (13.4%)
+2025-10-02 05:52:01,981 - app.core.session_pool - INFO - Successfully created session rembg_1
+2025-10-02 05:52:01,981 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (13.4%)
+2025-10-02 05:52:01,982 - app.core.session_pool - INFO - Session pools initialized successfully
+2025-10-02 05:52:01,982 - main - INFO - ✅ 세션 풀 초기화 완료
+2025-10-02 05:52:01,982 - app.core.worker_manager - INFO - Starting worker manager...
+2025-10-02 05:52:01,982 - app.core.worker_manager - INFO - Worker manager started with 6 workers
+2025-10-02 05:52:01,982 - main - INFO - ✅ 워커 매니저 시작 완료
+2025-10-02 05:52:01,982 - app.core.batch_manager - INFO - Starting BatchManager...
+2025-10-02 05:52:01,983 - app.core.batch_manager - INFO - BatchManager started successfully.
+2025-10-02 05:52:01,983 - main - INFO - ✅ 배치 관리자 시작 완료
+2025-10-02 05:52:01,983 - main - INFO - 🎉 인페인팅 서버 시작 완료!
+2025-10-02 05:52:01,983 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다.
+2025-10-02 05:52:01,984 - app.core.session_pool - INFO - Idle session reaper started. Timeout: 1800s, Check Interval: 60s
+2025-10-02 05:52:02,657 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:52:02,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:52:10,788 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.432
+2025-10-02 05:52:10,789 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 8.106s
+2025-10-02 05:52:10,789 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 8.108s
+2025-10-02 05:52:11,093 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:52:11,116 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:52:11,195 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.219
+2025-10-02 05:52:11,195 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s
+2025-10-02 05:52:11,195 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+2025-10-02 05:52:11,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:11,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:11,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:12,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.386s
+2025-10-02 05:52:12,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.386s (avg: 1.386s/image)
+2025-10-02 05:52:12,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:13,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:13,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:13,541 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:20,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 6.945s
+2025-10-02 05:52:20,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 6.945s (avg: 6.945s/image)
+2025-10-02 05:52:20,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:20,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:20,934 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:20,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:21,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:52:21,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:52:21,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:21,688 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:52:21,713 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:52:21,800 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.060
+2025-10-02 05:52:21,800 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 05:52:21,800 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 05:52:23,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:23,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:23,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:23,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:52:23,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:52:23,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:24,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:24,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:24,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:24,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:52:24,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:52:24,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:25,714 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:52:25,745 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:52:25,832 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.649
+2025-10-02 05:52:25,832 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s
+2025-10-02 05:52:25,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+2025-10-02 05:52:26,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:26,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:26,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:26,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:52:26,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:52:26,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:27,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:27,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:27,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:27,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s
+2025-10-02 05:52:27,250 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image)
+2025-10-02 05:52:27,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:29,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:29,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:29,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:29,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s
+2025-10-02 05:52:29,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image)
+2025-10-02 05:52:29,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:29,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:52:29,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(949, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:52:29,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.678
+2025-10-02 05:52:29,914 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s
+2025-10-02 05:52:29,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s
+2025-10-02 05:52:30,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:30,072 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:30,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:30,204 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s
+2025-10-02 05:52:30,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image)
+2025-10-02 05:52:30,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:30,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:30,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:30,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:30,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:52:30,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:52:30,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:31,243 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:52:31,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:52:31,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:52:31,550 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.306s
+2025-10-02 05:52:31,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.306s (avg: 0.153s/image)
+2025-10-02 05:52:31,550 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:52:33,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:33,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:33,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:33,742 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s
+2025-10-02 05:52:33,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image)
+2025-10-02 05:52:33,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:34,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:34,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:34,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:35,121 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s
+2025-10-02 05:52:35,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image)
+2025-10-02 05:52:35,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:35,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:35,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:35,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:35,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s
+2025-10-02 05:52:35,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image)
+2025-10-02 05:52:35,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:36,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:36,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:36,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:36,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:52:36,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:52:36,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:36,901 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs.
+2025-10-02 05:52:36,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB
+2025-10-02 05:52:36,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행
+2025-10-02 05:52:43,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 6.571s
+2025-10-02 05:52:43,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 6.571s (avg: 3.285s/image)
+2025-10-02 05:52:43,473 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs.
+2025-10-02 05:52:43,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:43,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:43,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:44,056 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s
+2025-10-02 05:52:44,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image)
+2025-10-02 05:52:44,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:44,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:44,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:44,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:44,616 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s
+2025-10-02 05:52:44,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image)
+2025-10-02 05:52:44,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:45,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:45,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:45,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:46,039 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s
+2025-10-02 05:52:46,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image)
+2025-10-02 05:52:46,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:46,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:46,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:46,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:46,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s
+2025-10-02 05:52:46,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image)
+2025-10-02 05:52:46,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:47,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:47,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:47,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:47,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s
+2025-10-02 05:52:47,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image)
+2025-10-02 05:52:47,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:48,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:48,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:48,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:49,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s
+2025-10-02 05:52:49,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image)
+2025-10-02 05:52:49,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:49,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:49,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:49,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:49,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s
+2025-10-02 05:52:49,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image)
+2025-10-02 05:52:49,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:52,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:52,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:52,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:52,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s
+2025-10-02 05:52:52,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image)
+2025-10-02 05:52:52,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:53,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:53,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:53,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:53,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:52:53,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:52:53,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:54,275 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:54,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:54,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:54,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s
+2025-10-02 05:52:54,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image)
+2025-10-02 05:52:54,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:54,817 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:54,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:54,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:54,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s
+2025-10-02 05:52:54,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image)
+2025-10-02 05:52:54,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:55,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:55,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:55,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:55,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s
+2025-10-02 05:52:55,525 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image)
+2025-10-02 05:52:55,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:55,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:55,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:55,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:55,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s
+2025-10-02 05:52:55,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image)
+2025-10-02 05:52:55,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:56,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:56,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:56,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행
+2025-10-02 05:52:56,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s
+2025-10-02 05:52:56,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image)
+2025-10-02 05:52:56,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
diff --git a/logs/main_server.log b/logs/main_server.log
index aea910d..fff9f80 100644
--- a/logs/main_server.log
+++ b/logs/main_server.log
@@ -1,89361 +1,662 @@
WARNING:root:jtop library not found. Jetson monitoring will be limited. Please run 'sudo pip install jetson-stats'
-INFO: Started server process [271615]
+INFO: Started server process [326469]
INFO: Waiting for application startup.
INFO:main:🚀 인페인팅 서버 시작 중...
-2025-10-02 00:42:20,858 - main - INFO - 🚀 인페인팅 서버 시작 중...
+2025-10-02 05:51:55,951 - main - INFO - 🚀 인페인팅 서버 시작 중...
INFO:main:✅ 공유 객체를 app.state에 저장 완료
-2025-10-02 00:42:20,858 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료
+2025-10-02 05:51:55,951 - main - INFO - ✅ 공유 객체를 app.state에 저장 완료
INFO:main:🔄 상태 저장 백그라운드 작업 생성 중...
-2025-10-02 00:42:20,858 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중...
+2025-10-02 05:51:55,951 - main - INFO - 🔄 상태 저장 백그라운드 작업 생성 중...
INFO:main:✅ 상태 저장 백그라운드 작업 생성 완료
-2025-10-02 00:42:20,858 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료
+2025-10-02 05:51:55,952 - main - INFO - ✅ 상태 저장 백그라운드 작업 생성 완료
INFO:main:🚀 세션 풀 초기화 (CUDA 자동 감지)
-2025-10-02 00:42:20,858 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지)
+2025-10-02 05:51:55,952 - main - INFO - 🚀 세션 풀 초기화 (CUDA 자동 감지)
INFO:app.core.session_pool:Initializing dynamic session pools...
-2025-10-02 00:42:20,858 - app.core.session_pool - INFO - Initializing dynamic session pools...
+2025-10-02 05:51:55,952 - 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
+2025-10-02 05:51:55,952 - app.core.session_pool - INFO - Pre-loading 4 sessions for simple_lama
INFO:main:🔄 상태 저장 백그라운드 작업 시작됨
-2025-10-02 00:42:20,858 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨
+2025-10-02 05:51:55,952 - main - INFO - 🔄 상태 저장 백그라운드 작업 시작됨
INFO:app.core.session_pool: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...
+2025-10-02 05:51:55,953 - 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-02 00:42:22,402 - app.core.session_pool - INFO - Creating new session simple_lama_1 for simple_lama...
+2025-10-02 05:51:57,610 - 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...
+2025-10-02 05:51:57,611 - 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...
+2025-10-02 05:51:57,611 - 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-02 00:42:22,403 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:51:57,611 - app.models.simple_lama - INFO - Loading Simple LAMA model...
INFO:app.models.simple_lama:실제 SimpleLama 모델 로딩 완료
-2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:51:58,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
INFO:app.models.simple_lama:Simple LAMA model loaded successfully
-2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:51:58,614 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
INFO:app.models.simple_lama:Loading Simple LAMA model...
-2025-10-02 00:42:23,410 - app.models.simple_lama - INFO - Loading Simple LAMA model...
+2025-10-02 05:51:58,614 - app.models.simple_lama - INFO - Loading Simple LAMA model...
INFO:app.models.simple_lama:실제 SimpleLama 모델 로딩 완료
-2025-10-02 00:42:24,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
+2025-10-02 05:51:59,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델 로딩 완료
INFO:app.models.simple_lama:Simple LAMA model loaded successfully
-2025-10-02 00:42:24,170 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
+2025-10-02 05:51:59,350 - 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...
+2025-10-02 05:51:59,350 - 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 모델 로딩 완료
+2025-10-02 05:52:00,156 - 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
+2025-10-02 05:52:00,156 - 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...
+2025-10-02 05:52:00,156 - 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 모델 로딩 완료
+2025-10-02 05:52:00,896 - 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
+2025-10-02 05:52:00,896 - app.models.simple_lama - INFO - Simple LAMA model loaded successfully
INFO:app.core.session_pool:Successfully created session simple_lama_0
-2025-10-02 00:42:25,800 - app.core.session_pool - INFO - Successfully created session simple_lama_0
+2025-10-02 05:52:00,897 - 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%)
+2025-10-02 05:52:00,897 - 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-02 00:42:25,800 - app.core.session_pool - INFO - Successfully created session simple_lama_1
+2025-10-02 05:52:00,897 - 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%)
+2025-10-02 05:52:00,897 - 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
+2025-10-02 05:52:00,898 - 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%)
+2025-10-02 05:52:00,898 - 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
+2025-10-02 05:52:00,898 - 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%)
+2025-10-02 05:52:00,898 - 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-02 00:42:25,802 - app.core.session_pool - INFO - Pre-loading 1 sessions for migan
+2025-10-02 05:52:00,898 - 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-02 00:42:25,802 - app.core.session_pool - INFO - Creating new session migan_0 for migan...
+2025-10-02 05:52:00,899 - app.core.session_pool - INFO - Creating new session migan_0 for migan...
INFO:app.models.migan:Loading MIGAN ONNX model...
-2025-10-02 00:42:25,842 - app.models.migan - INFO - Loading MIGAN ONNX model...
+2025-10-02 05:52:00,920 - app.models.migan - INFO - Loading MIGAN ONNX model...
INFO:app.models.migan:MIGAN ONNX 런타임 세션 생성 시도...
-2025-10-02 00:42:25,843 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도...
+2025-10-02 05:52:00,920 - app.models.migan - INFO - MIGAN ONNX 런타임 세션 생성 시도...
INFO:app.models.migan:MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider']
-2025-10-02 00:42:25,843 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:52:00,920 - app.models.migan - INFO - MIGAN ONNX providers 설정: ['CUDAExecutionProvider', 'CPUExecutionProvider']
INFO:app.models.migan:MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider']
-2025-10-02 00:42:26,114 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider']
+2025-10-02 05:52:01,190 - app.models.migan - INFO - MIGAN ONNX 세션 생성 완료. Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider']
INFO:app.models.migan:MIGAN ONNX model loaded successfully
-2025-10-02 00:42:26,115 - app.models.migan - INFO - MIGAN ONNX model loaded successfully
+2025-10-02 05:52:01,191 - app.models.migan - INFO - MIGAN ONNX model loaded successfully
INFO:app.core.session_pool:Successfully created session migan_0
-2025-10-02 00:42:26,115 - app.core.session_pool - INFO - Successfully created session migan_0
+2025-10-02 05:52:01,191 - 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-02 00:42:26,116 - app.core.session_pool - INFO - Pre-loading 1 sessions for rembg
+2025-10-02 05:52:01,191 - 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 2 sessions for rembg
+2025-10-02 05:52:01,192 - app.core.session_pool - INFO - Pre-loading 2 sessions for rembg
INFO:app.core.session_pool: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...
+2025-10-02 05:52:01,192 - app.core.session_pool - INFO - Creating new session rembg_0 for rembg...
INFO:app.models.bria_rmbg_onnx:BriaRMBGOnnxProcessor 초기화 완료
-2025-10-02 00:42:26,117 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료
+2025-10-02 05:52:01,193 - app.models.bria_rmbg_onnx - INFO - BriaRMBGOnnxProcessor 초기화 완료
+INFO:app.core.session_pool:Creating new session rembg_1 for rembg...
+2025-10-02 05:52:01,193 - app.core.session_pool - INFO - Creating new session rembg_1 for rembg...
+INFO:app.models.bria_rmbg_onnx:BriaRMBGOnnxProcessor 초기화 완료
+2025-10-02 05:52:01,193 - 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-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 05:52:01,193 - 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-02 00:42:26,512 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output
+2025-10-02 05:52:01,599 - app.models.bria_rmbg_onnx - INFO - Bria RMBG ONNX 세션 생성 완료, Providers: ['CUDAExecutionProvider', 'CPUExecutionProvider'] | Input: input, Output: output
+INFO:app.models.bria_rmbg_onnx:Bria RMBG ONNX 세션 생성 중... path=app/models/onnx/BriaRMBG1.4_model_fp16.onnx
+2025-10-02 05:52:01,600 - 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-02 05:52:01,979 - 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-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%)
+2025-10-02 05:52:01,980 - 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 (13.4%)
+2025-10-02 05:52:01,980 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (13.4%)
+INFO:app.core.session_pool:Successfully created session rembg_1
+2025-10-02 05:52:01,981 - app.core.session_pool - INFO - Successfully created session rembg_1
+INFO:app.core.session_pool:➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (13.4%)
+2025-10-02 05:52:01,981 - app.core.session_pool - INFO - ➕ Session Created (rembg). Status -> simple_lama: 4, migan: 1, rembg: 0 | VRAM: 0.0/0.0 GB (13.4%)
INFO:app.core.session_pool:Session pools initialized successfully
-2025-10-02 00:42:26,513 - app.core.session_pool - INFO - Session pools initialized successfully
+2025-10-02 05:52:01,982 - app.core.session_pool - INFO - Session pools initialized successfully
INFO:main:✅ 세션 풀 초기화 완료
-2025-10-02 00:42:26,513 - main - INFO - ✅ 세션 풀 초기화 완료
+2025-10-02 05:52:01,982 - main - INFO - ✅ 세션 풀 초기화 완료
INFO:app.core.worker_manager:Starting worker manager...
-2025-10-02 00:42:26,513 - app.core.worker_manager - INFO - Starting worker manager...
+2025-10-02 05:52:01,982 - 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
+2025-10-02 05:52:01,982 - app.core.worker_manager - INFO - Worker manager started with 6 workers
INFO:main:✅ 워커 매니저 시작 완료
-2025-10-02 00:42:26,513 - main - INFO - ✅ 워커 매니저 시작 완료
+2025-10-02 05:52:01,982 - main - INFO - ✅ 워커 매니저 시작 완료
INFO:app.core.batch_manager:Starting BatchManager...
-2025-10-02 00:42:26,514 - app.core.batch_manager - INFO - Starting BatchManager...
+2025-10-02 05:52:01,982 - app.core.batch_manager - INFO - Starting BatchManager...
INFO:app.core.batch_manager:BatchManager started successfully.
-2025-10-02 00:42:26,514 - app.core.batch_manager - INFO - BatchManager started successfully.
+2025-10-02 05:52:01,983 - app.core.batch_manager - INFO - BatchManager started successfully.
INFO:main:✅ 배치 관리자 시작 완료
-2025-10-02 00:42:26,514 - main - INFO - ✅ 배치 관리자 시작 완료
+2025-10-02 05:52:01,983 - main - INFO - ✅ 배치 관리자 시작 완료
INFO:main:🎉 인페인팅 서버 시작 완료!
-2025-10-02 00:42:26,514 - main - INFO - 🎉 인페인팅 서버 시작 완료!
+2025-10-02 05:52:01,983 - main - INFO - 🎉 인페인팅 서버 시작 완료!
WARNING:app.utils.discord_notifier:Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다.
-2025-10-02 00:42:26,514 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다.
+2025-10-02 05:52:01,983 - app.utils.discord_notifier - WARNING - Discord 웹훅 URL이 설정되지 않아 알림을 보낼 수 없습니다.
INFO:app.core.session_pool: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
+2025-10-02 05:52:01,984 - 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: 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: 211.197.218.214:57578 - "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)
+2025-10-02 05:52:02,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 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
+2025-10-02 05:52:02,681 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.432
+2025-10-02 05:52:10,788 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.432
+INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 8.106s
+2025-10-02 05:52:10,789 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 8.106s
+INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 8.108s
+2025-10-02 05:52:10,789 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 8.108s
+INFO: 211.197.218.214:57655 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK
+INFO: 127.0.0.1:39954 - "GET /api/v1/health HTTP/1.1" 200 OK
+INFO: 61.255.207.212:49616 - "GET /api/v1/model HTTP/1.1" 200 OK
+INFO: 61.255.207.212:61386 - "GET /api/v1/model HTTP/1.1" 200 OK
+INFO: 127.0.0.1:39960 - "GET /api/v1/health 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)
+2025-10-02 05:52:11,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 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
+2025-10-02 05:52:11,116 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.219
+2025-10-02 05:52:11,195 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.219
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
+2025-10-02 05:52:11,195 - 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: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
+2025-10-02 05:52:11,195 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s
+INFO: 61.255.207.212:49617 - "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:12:55,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:11,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:12:55,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:11,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: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)
+2025-10-02 05:52:11,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: 1.386s
+2025-10-02 05:52:12,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 1.386s
+INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 1.386s (avg: 1.386s/image)
+2025-10-02 05:52:12,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 1.386s (avg: 1.386s/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
+2025-10-02 05:52:12,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+INFO: 61.255.207.212:61387 - "POST /api/v1/inpaint HTTP/1.1" 200 OK
+INFO: 39.112.59.88:50103 - "GET /api/v1/model HTTP/1.1" 200 OK
+INFO: 127.0.0.1:39962 - "GET /api/v1/realtime_status 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.
+2025-10-02 05:52:13,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:12:56,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52: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 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)
+2025-10-02 05:52:13,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: 6.945s
+2025-10-02 05:52:20,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 6.945s
+INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 6.945s (avg: 6.945s/image)
+2025-10-02 05:52:20,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 6.945s (avg: 6.945s/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
+2025-10-02 05:52:20,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+INFO: 39.112.59.88:50104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK
+INFO: 220.127.236.236:65221 - "GET /api/v1/model HTTP/1.1" 200 OK
+INFO: 127.0.0.1:59876 - "GET /api/v1/stats HTTP/1.1" 200 OK
+INFO: 127.0.0.1:59878 - "GET /api/v1/realtime_status 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.
+2025-10-02 05:52:20,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:13:02,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:20,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: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개 이미지 인페인팅 수행
+2025-10-02 05:52:20,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 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 05:52:21,097 - 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)
+2025-10-02 05:52:21,097 - 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
+2025-10-02 05:52:21,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+INFO: 220.127.236.236:65222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK
+INFO: 61.255.207.212:54917 - "GET /api/v1/model HTTP/1.1" 200 OK
+INFO: 127.0.0.1:59882 - "GET /api/v1/stats 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)
+2025-10-02 05:52:21,688 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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
+2025-10-02 05:52:21,713 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.060
+2025-10-02 05:52:21,800 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.060
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
+2025-10-02 05:52:21,800 - 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
+2025-10-02 05:52:21,800 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+INFO: 61.255.207.212:54918 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK
+INFO: 175.119.234.181:3693 - "GET /api/v1/model HTTP/1.1" 200 OK
+INFO: 220.77.167.192:52087 - "GET /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.
+2025-10-02 05:52: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 01:29:17,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52: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 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개 이미지 인페인팅 수행
+2025-10-02 05:52:23,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.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
+2025-10-02 05:52:23,901 - 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)
+2025-10-02 05:52:23,901 - 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
+2025-10-02 05:52:23,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+INFO: 220.77.167.192:52088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK
+INFO: 127.0.0.1:55034 - "GET /api/v1/realtime_status 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.
+2025-10-02 05:52:24,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 01:30:07,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:24,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 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개 이미지 인페인팅 수행
+2025-10-02 05:52:24,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.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
+2025-10-02 05:52:24,296 - 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)
+2025-10-02 05:52:24,296 - 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
+2025-10-02 05:52:24,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+INFO: 175.119.234.181:3694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK
+INFO: 127.0.0.1:55044 - "GET /api/v1/stats HTTP/1.1" 200 OK
+INFO: 127.0.0.1:55058 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK
+INFO: 61.255.207.212:54925 - "GET /api/v1/model 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.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+2025-10-02 05:52:25,714 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:52:25,745 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.649
+2025-10-02 05:52:25,832 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.649
+INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s
+2025-10-02 05:52:25,832 - 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 05:52:25,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s
+INFO: 61.255.207.212:54926 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK
+INFO: 127.0.0.1:55066 - "GET /api/v1/stats 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.
+2025-10-02 05:52:26,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:14:31,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:26,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: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)
+2025-10-02 05:52:26,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.156s
+2025-10-02 05:52:26,357 - 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 05:52:26,358 - 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:32,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+2025-10-02 05:52:26,358 - 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: 127.0.0.1:55080 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK
+INFO: 39.112.59.88:50109 - "GET /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:32,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:27,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:14:32,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:27,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: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개 이미지 인페인팅 수행
+2025-10-02 05:52:27,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.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
+2025-10-02 05:52:27,250 - 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)
+2025-10-02 05:52:27,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 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
+2025-10-02 05:52:27,250 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+INFO: 39.112.59.88:50110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK
+INFO: 127.0.0.1:55084 - "GET /api/v1/stats HTTP/1.1" 200 OK
+INFO: 127.0.0.1:55092 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK
+INFO: 127.0.0.1:55098 - "GET /api/v1/stats HTTP/1.1" 200 OK
+INFO: 175.119.234.181:3700 - "GET /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:49,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52: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 02:14:49,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05: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 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)
+2025-10-02 05:52: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.179s
+2025-10-02 05:52:29,358 - 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 05:52:29,358 - 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: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
+2025-10-02 05:52:29,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+INFO: 175.119.234.181:3701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK
+INFO: 61.255.207.212:54930 - "GET /api/v1/model HTTP/1.1" 200 OK
+INFO: 127.0.0.1:55100 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK
+INFO: 220.77.167.192:53051 - "GET /api/v1/model HTTP/1.1" 200 OK
+INFO: 220.127.236.236:65227 - "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
+2025-10-02 05:52:29,786 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg)
+INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(949, 1000, 3), model_name=briaaiRMBG-1.4
+2025-10-02 05:52:29,816 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(949, 1000, 3), model_name=briaaiRMBG-1.4
+INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=81.678
+2025-10-02 05:52:29,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.678
+INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.097s
+2025-10-02 05:52:29,914 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s
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
+2025-10-02 05:52:29,915 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.099s
+INFO: 61.255.207.212:54931 - "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.
+2025-10-02 05:52:30,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 02:19:55,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:30,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: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)
+2025-10-02 05:52:30,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.132s
+2025-10-02 05:52:30,204 - 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 05:52:30,205 - 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: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
+2025-10-02 05:52:30,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs.
+INFO: 220.77.167.192:53052 - "POST /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,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs.
+2025-10-02 05:52:30,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:19:56,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB
+2025-10-02 05:52:30,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: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개 이미지 인페인팅 수행
+2025-10-02 05:52:30,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 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 05:52:30,493 - 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)
+2025-10-02 05:52:30,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 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 j